Skip to content

Commit

Permalink
Update Docker image to PHP 8.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
flavioheleno committed Mar 19, 2022
1 parent 1f01034 commit 1dfe362
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.env
.git
.github
.idea/
.vscode/
/coverage/
/logs/*
/run/
/tests/
/vendor/
6 changes: 3 additions & 3 deletions docker/php.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#============================================
# BUILD
#============================================
FROM php:8.1.3-cli-alpine3.15 AS builder
FROM php:8.1.4-cli-alpine3.15 AS builder

# https://blog.packagecloud.io/eng/2017/02/21/set-environment-variable-save-thousands-of-system-calls/
ENV TZ=:/etc/localtime
Expand Down Expand Up @@ -71,7 +71,7 @@ RUN composer install --no-progress --ignore-platform-reqs --no-dev --prefer-dist
#============================================
# COMMAND LINE INTERFACE
#============================================
FROM php:8.1.3-cli-alpine3.15 as cli
FROM php:8.1.4-cli-alpine3.15 as cli

# https://blog.packagecloud.io/eng/2017/02/21/set-environment-variable-save-thousands-of-system-calls/
ENV TZ=:/etc/localtime
Expand Down Expand Up @@ -138,7 +138,7 @@ CMD ["php"]
#============================================
# FPM SAPI
#============================================
FROM php:8.1.3-fpm-alpine3.15 as fpm
FROM php:8.1.4-fpm-alpine3.15 as fpm

# https://blog.packagecloud.io/eng/2017/02/21/set-environment-variable-save-thousands-of-system-calls/
ENV TZ=:/etc/localtime
Expand Down

0 comments on commit 1dfe362

Please sign in to comment.