Skip to content

Commit

Permalink
Merge pull request #252 from ne20002/develop
Browse files Browse the repository at this point in the history
Update to PHP 8.2
  • Loading branch information
nupplaphil authored Aug 23, 2024
2 parents d618969 + 69adf85 commit 30c1e74
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 8 deletions.
4 changes: 3 additions & 1 deletion 2024.08/apache/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
FROM php:8.1-apache-bullseye
FROM php:8.2-apache-bookworm

# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
Expand Down Expand Up @@ -63,6 +63,8 @@ RUN set -ex; \
libtool \
libmagick++-dev \
libmemcached-dev \
zlib1g-dev \
libssl-dev \
libgraphicsmagick1-dev \
libfreetype6-dev \
libwebp-dev \
Expand Down
2 changes: 1 addition & 1 deletion 2024.08/fpm-alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# DO NOT EDIT: created by update.sh from Dockerfile-alpine.template
FROM php:8.1-fpm-alpine
FROM php:8.2-fpm-alpine

# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
Expand Down
4 changes: 3 additions & 1 deletion 2024.08/fpm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
FROM php:8.1-fpm-bullseye
FROM php:8.2-fpm-bookworm

# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
Expand Down Expand Up @@ -63,6 +63,8 @@ RUN set -ex; \
libtool \
libmagick++-dev \
libmemcached-dev \
zlib1g-dev \
libssl-dev \
libgraphicsmagick1-dev \
libfreetype6-dev \
libwebp-dev \
Expand Down
4 changes: 3 additions & 1 deletion 2024.09-dev/apache/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
FROM php:8.1-apache-bullseye
FROM php:8.2-apache-bookworm

# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
Expand Down Expand Up @@ -63,6 +63,8 @@ RUN set -ex; \
libtool \
libmagick++-dev \
libmemcached-dev \
zlib1g-dev \
libssl-dev \
libgraphicsmagick1-dev \
libfreetype6-dev \
libwebp-dev \
Expand Down
2 changes: 1 addition & 1 deletion 2024.09-dev/fpm-alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# DO NOT EDIT: created by update.sh from Dockerfile-alpine.template
FROM php:8.1-fpm-alpine
FROM php:8.2-fpm-alpine

# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
Expand Down
4 changes: 3 additions & 1 deletion 2024.09-dev/fpm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
FROM php:8.1-fpm-bullseye
FROM php:8.2-fpm-bookworm

# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
Expand Down Expand Up @@ -63,6 +63,8 @@ RUN set -ex; \
libtool \
libmagick++-dev \
libmemcached-dev \
zlib1g-dev \
libssl-dev \
libgraphicsmagick1-dev \
libfreetype6-dev \
libwebp-dev \
Expand Down
4 changes: 3 additions & 1 deletion Dockerfile-debian.template
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:%%PHP_VERSION%%-%%VARIANT%%-bullseye
FROM php:%%PHP_VERSION%%-%%VARIANT%%-bookworm

# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
Expand Down Expand Up @@ -62,6 +62,8 @@ RUN set -ex; \
libtool \
libmagick++-dev \
libmemcached-dev \
zlib1g-dev \
libssl-dev \
libgraphicsmagick1-dev \
libfreetype6-dev \
libwebp-dev \
Expand Down
2 changes: 1 addition & 1 deletion update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -eo pipefail

declare -A php_version=(
[default]='8.1'
[default]='8.2'
)

declare -A cmd=(
Expand Down

0 comments on commit 30c1e74

Please sign in to comment.