Skip to content

Commit

Permalink
Merge #411 - Update to PHP 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
williamdes committed Jun 29, 2023
2 parents e1da755 + 67f9b75 commit 948bf2d
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 @@ -7,6 +7,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [Unreleased] - YYYY-MM-DD

- Add `TZ` env var to change PHP `date.timezone` (#133)
- Update to PHP 8.2

## [5.2.1] - 2023-02-08

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.1-%%VARIANT%%
FROM php:8.2-%%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.1-%%VARIANT%%
FROM php:8.2-%%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.1-apache
FROM php:8.2-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.1-fpm-alpine
FROM php:8.2-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.1-fpm
FROM php:8.2-fpm

# Install dependencies
RUN set -ex; \
Expand Down

0 comments on commit 948bf2d

Please sign in to comment.