Skip to content

Commit

Permalink
Fix #393 - Upgrade the image to PHP 8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
williamdes committed Jan 1, 2023
1 parent c59f287 commit d1f327e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Allow a different Apache port with `APACHE_PORT` (#340)
- Add support for ENVs `PMA_UPLOADDIR` and `PMA_SAVEDIR` (#384)
- Fixed a bug with `APACHE_PORT` ENV on container restart (#381)
- Update to PHP 8.1 (#393)

## [5.1.4] - 2022-05-11

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-alpine.template
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.0-%%VARIANT%%
FROM php:8.1-%%VARIANT%%

# docker-entrypoint.sh dependencies
RUN apk add --no-cache \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-debian.template
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.0-%%VARIANT%%
FROM php:8.1-%%VARIANT%%

# Install dependencies
RUN set -ex; \
Expand Down
2 changes: 1 addition & 1 deletion apache/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.0-apache
FROM php:8.1-apache

# Install dependencies
RUN set -ex; \
Expand Down
2 changes: 1 addition & 1 deletion fpm-alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.0-fpm-alpine
FROM php:8.1-fpm-alpine

# docker-entrypoint.sh dependencies
RUN apk add --no-cache \
Expand Down
2 changes: 1 addition & 1 deletion fpm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.0-fpm
FROM php:8.1-fpm

# Install dependencies
RUN set -ex; \
Expand Down

0 comments on commit d1f327e

Please sign in to comment.