diff --git a/5.6/Dockerfile b/5.6/Dockerfile index 5f6004b..355e495 100644 --- a/5.6/Dockerfile +++ b/5.6/Dockerfile @@ -1,4 +1,4 @@ -FROM bfren/apache:apache2.4.43-alpine3.8-3.0.7 +FROM bfren/apache:apache2.4.43-alpine3.8-3.0.8 LABEL org.opencontainers.image.source="https://github.com/bfren/docker-apache-php" diff --git a/7.4/Dockerfile b/7.4/Dockerfile index cc87a11..57208ad 100644 --- a/7.4/Dockerfile +++ b/7.4/Dockerfile @@ -1,4 +1,4 @@ -FROM bfren/apache:apache2.4.56-alpine3.15-3.0.7 +FROM bfren/apache:apache2.4.56-alpine3.15-3.0.8 LABEL org.opencontainers.image.source="https://github.com/bfren/docker-apache-php" diff --git a/8.0/Dockerfile b/8.0/Dockerfile index 30d457e..f583aa6 100644 --- a/8.0/Dockerfile +++ b/8.0/Dockerfile @@ -1,4 +1,4 @@ -FROM bfren/apache:apache2.4.56-alpine3.16-3.0.7 +FROM bfren/apache:apache2.4.56-alpine3.16-3.0.8 LABEL org.opencontainers.image.source="https://github.com/bfren/docker-apache-php" diff --git a/8.1/Dockerfile b/8.1/Dockerfile index 88624d2..1b821da 100644 --- a/8.1/Dockerfile +++ b/8.1/Dockerfile @@ -1,4 +1,4 @@ -FROM bfren/apache:apache2.4.57-alpine3.18-3.0.7 +FROM bfren/apache:apache2.4.57-alpine3.18-3.0.8 LABEL org.opencontainers.image.source="https://github.com/bfren/docker-apache-php" diff --git a/8.2/Dockerfile b/8.2/Dockerfile index 342f03f..dc54166 100644 --- a/8.2/Dockerfile +++ b/8.2/Dockerfile @@ -1,4 +1,4 @@ -FROM bfren/apache:apache2.4.57-alpine3.18-3.0.7 +FROM bfren/apache:apache2.4.57-alpine3.18-3.0.8 LABEL org.opencontainers.image.source="https://github.com/bfren/docker-apache-php" diff --git a/VERSION b/VERSION index d003324..9c25f93 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.0.12 \ No newline at end of file +3.0.13 \ No newline at end of file diff --git a/generate-dockerfiles.sh b/generate-dockerfiles.sh index de69c01..529961f 100755 --- a/generate-dockerfiles.sh +++ b/generate-dockerfiles.sh @@ -4,7 +4,7 @@ set -euo pipefail docker pull bfren/alpine -BASE_REVISION="3.0.7" +BASE_REVISION="3.0.8" echo "Base: ${BASE_REVISION}" PHP_VERSIONS="5.6 7.4 8.0 8.1 8.2" diff --git a/run.sh b/run.sh index 09e8de4..4bd3309 100644 --- a/run.sh +++ b/run.sh @@ -1,9 +1,10 @@ #!/bin/sh IMAGE=`cat VERSION` -PHP=${1:-8.0} +PHP=${1:-8.2} docker buildx build \ + --load \ --build-arg BF_IMAGE=apache-php \ --build-arg BF_VERSION=${IMAGE} \ -f ${PHP}/Dockerfile \