Skip to content

Commit 645f515

Browse files
authored
Restore PHP 8.3 (#2422)
Signed-off-by: J0WI <[email protected]>
1 parent a19d68f commit 645f515

File tree

8 files changed

+14
-13
lines changed

8 files changed

+14
-13
lines changed

30/apache/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
2-
FROM php:8.2-apache-bookworm
2+
FROM php:8.3-apache-bookworm
33

44
# entrypoint.sh and cron.sh dependencies
55
RUN set -ex; \

30/fpm-alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# DO NOT EDIT: created by update.sh from Dockerfile-alpine.template
2-
FROM php:8.2-fpm-alpine3.21
2+
FROM php:8.3-fpm-alpine3.21
33

44
# entrypoint.sh and cron.sh dependencies
55
RUN set -ex; \

30/fpm/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
2-
FROM php:8.2-fpm-bookworm
2+
FROM php:8.3-fpm-bookworm
33

44
# entrypoint.sh and cron.sh dependencies
55
RUN set -ex; \

31/apache/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
2-
FROM php:8.2-apache-bookworm
2+
FROM php:8.3-apache-bookworm
33

44
# entrypoint.sh and cron.sh dependencies
55
RUN set -ex; \

31/fpm-alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# DO NOT EDIT: created by update.sh from Dockerfile-alpine.template
2-
FROM php:8.2-fpm-alpine3.21
2+
FROM php:8.3-fpm-alpine3.21
33

44
# entrypoint.sh and cron.sh dependencies
55
RUN set -ex; \

31/fpm/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
2-
FROM php:8.2-fpm-bookworm
2+
FROM php:8.3-fpm-bookworm
33

44
# entrypoint.sh and cron.sh dependencies
55
RUN set -ex; \

update.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ declare -A debian_version=(
1010
)
1111

1212
declare -A php_version=(
13-
[default]='8.2'
13+
[29]='8.2'
14+
[default]='8.3'
1415
)
1516

1617
declare -A cmd=(

versions.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@
99
"variant": "apache",
1010
"base": "debian",
1111
"baseVersion": "bookworm",
12-
"phpVersion": "8.2"
12+
"phpVersion": "8.3"
1313
},
1414
"fpm": {
1515
"variant": "fpm",
1616
"base": "debian",
1717
"baseVersion": "bookworm",
18-
"phpVersion": "8.2"
18+
"phpVersion": "8.3"
1919
},
2020
"fpm-alpine": {
2121
"variant": "fpm-alpine",
2222
"base": "alpine",
2323
"baseVersion": "3.21",
24-
"phpVersion": "8.2"
24+
"phpVersion": "8.3"
2525
}
2626
}
2727
},
@@ -35,19 +35,19 @@
3535
"variant": "apache",
3636
"base": "debian",
3737
"baseVersion": "bookworm",
38-
"phpVersion": "8.2"
38+
"phpVersion": "8.3"
3939
},
4040
"fpm": {
4141
"variant": "fpm",
4242
"base": "debian",
4343
"baseVersion": "bookworm",
44-
"phpVersion": "8.2"
44+
"phpVersion": "8.3"
4545
},
4646
"fpm-alpine": {
4747
"variant": "fpm-alpine",
4848
"base": "alpine",
4949
"baseVersion": "3.21",
50-
"phpVersion": "8.2"
50+
"phpVersion": "8.3"
5151
}
5252
}
5353
},

0 commit comments

Comments
 (0)