Skip to content

Commit

Permalink
Merge pull request #232 from nupplaphil/update_php
Browse files Browse the repository at this point in the history
Update to PHP 8.1
  • Loading branch information
MrPetovan authored Dec 3, 2023
2 parents 832f9b6 + 3247487 commit ff6db60
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion 2023.05/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.0-apache-bullseye
FROM php:8.1-apache-bullseye

# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
Expand Down
2 changes: 1 addition & 1 deletion 2023.05/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.0-fpm-alpine
FROM php:8.1-fpm-alpine

# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
Expand Down
2 changes: 1 addition & 1 deletion 2023.05/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.0-fpm-bullseye
FROM php:8.1-fpm-bullseye

# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
Expand Down
2 changes: 1 addition & 1 deletion 2023.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.0-apache-bullseye
FROM php:8.1-apache-bullseye

# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
Expand Down
2 changes: 1 addition & 1 deletion 2023.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.0-fpm-alpine
FROM php:8.1-fpm-alpine

# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
Expand Down
2 changes: 1 addition & 1 deletion 2023.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.0-fpm-bullseye
FROM php:8.1-fpm-bullseye

# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
Expand Down
2 changes: 1 addition & 1 deletion 2023.09-rc/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.0-apache-bullseye
FROM php:8.1-apache-bullseye

# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
Expand Down
2 changes: 1 addition & 1 deletion 2023.09-rc/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.0-fpm-alpine
FROM php:8.1-fpm-alpine

# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
Expand Down
2 changes: 1 addition & 1 deletion 2023.09-rc/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.0-fpm-bullseye
FROM php:8.1-fpm-bullseye

# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
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.0'
[default]='8.1'
)

declare -A cmd=(
Expand Down

0 comments on commit ff6db60

Please sign in to comment.