Skip to content

Commit

Permalink
feat: update to php:8.2.14-bullseye
Browse files Browse the repository at this point in the history
  • Loading branch information
ronisaha committed Jan 2, 2024
1 parent 05271fe commit 27098c9
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 9 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Docker
on:
push:
branches:
- main
- 8.2.x
paths:
- '**/Dockerfile'
jobs:
Expand All @@ -24,7 +24,7 @@ jobs:
do
folder=${dockerFilePath%"/Dockerfile"}
VERSION=${folder##*/}
PHP_VERSION=8.2.13
PHP_VERSION=8.2.14
tmpName="image-$RANDOM"
cp -r fonts $folder/
Expand All @@ -35,6 +35,4 @@ jobs:
docker push $IMAGE_ID:$VERSION
docker tag $tmpName $IMAGE_ID:${VERSION}-$PHP_VERSION
docker push $IMAGE_ID:${VERSION}-$PHP_VERSION
if [ "$VERSION" == "fpm" ]; then docker tag $tmpName $IMAGE_ID:latest; fi
if [ "$VERSION" == "fpm" ]; then docker push $IMAGE_ID:latest; fi
done;
2 changes: 1 addition & 1 deletion apache/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PHP_VERSION=8.2.13
ARG PHP_VERSION=8.2.14
FROM php:${PHP_VERSION}-apache-bullseye

LABEL org.opencontainers.image.authors="Roni Kumar Saha <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion cli/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PHP_VERSION=8.2.13
ARG PHP_VERSION=8.2.14
FROM php:${PHP_VERSION}-cli-bullseye

LABEL org.opencontainers.image.authors="Roni Kumar Saha <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion dev/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PHP_VERSION=8.2.13
ARG PHP_VERSION=8.2.14
FROM php:${PHP_VERSION}-apache-bullseye

LABEL org.opencontainers.image.authors="Roni Kumar Saha <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion fpm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PHP_VERSION=8.2.13
ARG PHP_VERSION=8.2.14
FROM php:${PHP_VERSION}-fpm-bullseye

LABEL org.opencontainers.image.authors="Roni Kumar Saha <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion supervisor/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PHP_VERSION=8.2.13
ARG PHP_VERSION=8.2.14
FROM php:${PHP_VERSION}-cli-bullseye

LABEL org.opencontainers.image.authors="Roni Kumar Saha <[email protected]>"
Expand Down

0 comments on commit 27098c9

Please sign in to comment.