Skip to content

Commit 22d28e4

Browse files
authored
Alpine 3.18 & PHP 8.2 (#1989)
Signed-off-by: J0WI <[email protected]>
1 parent fb5866a commit 22d28e4

5 files changed

Lines changed: 10 additions & 9 deletions

File tree

26/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.1-apache-bullseye
2+
FROM php:8.2-apache-bullseye
33

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

26/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.1-fpm-alpine3.17
2+
FROM php:8.2-fpm-alpine3.18
33

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

26/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.1-fpm-bullseye
2+
FROM php:8.2-fpm-bullseye
33

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

update.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,17 @@
22
set -eo pipefail
33

44
declare -A alpine_version=(
5-
[default]='3.17'
65
[25]='3.16'
6+
[default]='3.18'
77
)
88

99
declare -A debian_version=(
1010
[default]='bullseye'
1111
)
1212

1313
declare -A php_version=(
14-
[default]='8.1'
14+
[25]='8.1'
15+
[default]='8.2'
1516
)
1617

1718
declare -A cmd=(

versions.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@
99
"variant": "apache",
1010
"base": "debian",
1111
"baseVersion": "bullseye",
12-
"phpVersion": "8.1"
12+
"phpVersion": "8.2"
1313
},
1414
"fpm": {
1515
"variant": "fpm",
1616
"base": "debian",
1717
"baseVersion": "bullseye",
18-
"phpVersion": "8.1"
18+
"phpVersion": "8.2"
1919
},
2020
"fpm-alpine": {
2121
"variant": "fpm-alpine",
2222
"base": "alpine",
23-
"baseVersion": "3.17",
24-
"phpVersion": "8.1"
23+
"baseVersion": "3.18",
24+
"phpVersion": "8.2"
2525
}
2626
}
2727
},

0 commit comments

Comments
 (0)