diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 26d249a..7122650 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -24,7 +24,7 @@ jobs: do folder=${dockerFilePath%"/Dockerfile"} VERSION=${folder##*/} - PHP_VERSION=8.3.6 + PHP_VERSION=8.3.7 tmpName="image-$RANDOM" docker build $folder --file $folder/Dockerfile --tag $tmpName --build-arg PHP_VERSION=$PHP_VERSION diff --git a/apache/Dockerfile b/apache/Dockerfile index 018176c..6f840f1 100644 --- a/apache/Dockerfile +++ b/apache/Dockerfile @@ -1,4 +1,4 @@ -ARG PHP_VERSION=8.3.6 +ARG PHP_VERSION=8.3.7 FROM php:${PHP_VERSION}-apache-bullseye LABEL org.opencontainers.image.authors="Roni Kumar Saha " diff --git a/cli/Dockerfile b/cli/Dockerfile index 40d8a1e..6b7aa82 100644 --- a/cli/Dockerfile +++ b/cli/Dockerfile @@ -1,4 +1,4 @@ -ARG PHP_VERSION=8.3.6 +ARG PHP_VERSION=8.3.7 FROM php:${PHP_VERSION}-cli-bullseye LABEL org.opencontainers.image.authors="Roni Kumar Saha " diff --git a/dev/Dockerfile b/dev/Dockerfile index 770dc5e..f1d4f5f 100644 --- a/dev/Dockerfile +++ b/dev/Dockerfile @@ -1,4 +1,4 @@ -ARG PHP_VERSION=8.3.6 +ARG PHP_VERSION=8.3.7 FROM php:${PHP_VERSION}-apache-bullseye LABEL org.opencontainers.image.authors="Roni Kumar Saha " diff --git a/fpm/Dockerfile b/fpm/Dockerfile index 36827af..28e1d97 100644 --- a/fpm/Dockerfile +++ b/fpm/Dockerfile @@ -1,4 +1,4 @@ -ARG PHP_VERSION=8.3.6 +ARG PHP_VERSION=8.3.7 FROM php:${PHP_VERSION}-fpm-bullseye LABEL org.opencontainers.image.authors="Roni Kumar Saha " diff --git a/oci/Dockerfile b/oci/Dockerfile index 703bb86..01952dd 100644 --- a/oci/Dockerfile +++ b/oci/Dockerfile @@ -1,4 +1,4 @@ -ARG PHP_VERSION=8.3.6 +ARG PHP_VERSION=8.3.7 FROM php:${PHP_VERSION}-fpm-bullseye LABEL org.opencontainers.image.authors="Roni Kumar Saha " diff --git a/supervisor/Dockerfile b/supervisor/Dockerfile index 3168bd2..55c032f 100644 --- a/supervisor/Dockerfile +++ b/supervisor/Dockerfile @@ -1,4 +1,4 @@ -ARG PHP_VERSION=8.3.6 +ARG PHP_VERSION=8.3.7 FROM php:${PHP_VERSION}-cli-bullseye LABEL org.opencontainers.image.authors="Roni Kumar Saha "