Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
brucedou committed Feb 3, 2025
1 parent 9e59e29 commit ce15355
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions config/25.2.0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
#
status: "under development"
php:
- "8.2.27"
- "8.3.16"
- "8.4.3"
- "8.2.26"
- "8.3.15"
- "8.4.2"
image:
composer:
version: "2.8.5"
2 changes: 1 addition & 1 deletion dockerfiles/25.2.0/php8.2/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.2.27-cli-alpine3.21
FROM php:8.2.26-cli-alpine3.16

RUN \
curl -sfL https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer && \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/25.2.0/php8.2/cli/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.2.27-cli
FROM php:8.2.26-cli

ENV DEBIAN_FRONTEND=noninteractive
ENV TERM=xterm-color
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/25.2.0/php8.3/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.3.16-cli-alpine3.21
FROM php:8.3.15-cli-alpine3.16

RUN \
curl -sfL https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer && \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/25.2.0/php8.3/cli/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.3.16-cli
FROM php:8.3.15-cli

ENV DEBIAN_FRONTEND=noninteractive
ENV TERM=xterm-color
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/25.2.0/php8.4/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.4.3-cli-alpine3.21
FROM php:8.4.2-cli-alpine3.20

RUN \
curl -sfL https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer && \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/25.2.0/php8.4/cli/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.4.3-cli
FROM php:8.4.2-cli

ENV DEBIAN_FRONTEND=noninteractive
ENV TERM=xterm-color
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/latest/php8.2/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.2-cli-alpine3.21
FROM php:8.2-cli-alpine3.16

RUN \
curl -sfL https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer && \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/latest/php8.3/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.3-cli-alpine3.21
FROM php:8.3-cli-alpine3.16

RUN \
curl -sfL https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer && \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/latest/php8.4/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.4-cli-alpine3.21
FROM php:8.4-cli-alpine3.20

RUN \
curl -sfL https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer && \
Expand Down
6 changes: 3 additions & 3 deletions src/Dockerfile.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ class Dockerfile
// '7.4' => '3.16',
// '8.0' => '3.16',
// '8.1' => '3.16',
'8.2' => '3.21',
'8.3' => '3.21',
'8.4' => '3.21',
'8.2' => '3.16',
'8.3' => '3.16',
'8.4' => '3.20',
];

protected string $basePath;
Expand Down

0 comments on commit ce15355

Please sign in to comment.