Skip to content

Commit

Permalink
Fix #325 - Upgrade to PHP 8
Browse files Browse the repository at this point in the history
  • Loading branch information
williamdes committed Aug 23, 2021
1 parent 056d2b5 commit 7c28533
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 @@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Remove microbadger badges, it closed
- Improve the README file
- Fix add back composer.json and remove non needed source files (#345)
- Update to PHP 8.0 (#325)

## [5.1.1] - 2021-06-04

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:7.4-%%VARIANT%%
FROM php:8.0-%%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:7.4-%%VARIANT%%
FROM php:8.0-%%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:7.4-apache
FROM php:8.0-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:7.4-fpm-alpine
FROM php:8.0-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:7.4-fpm
FROM php:8.0-fpm

# Install dependencies
RUN set -ex; \
Expand Down

0 comments on commit 7c28533

Please sign in to comment.