Skip to content

Commit

Permalink
v3.0.13 (#99)
Browse files Browse the repository at this point in the history
Minor updates
* Using latest base images

Development updates
* Adding --load to run.sh
* Using PHP 8.2 as default version for run.sh
  • Loading branch information
bfren authored Sep 13, 2023
1 parent 6dfca0d commit 15e19be
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion 5.6/Dockerfile
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
2 changes: 1 addition & 1 deletion 7.4/Dockerfile
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
2 changes: 1 addition & 1 deletion 8.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
2 changes: 1 addition & 1 deletion 8.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
2 changes: 1 addition & 1 deletion 8.2/Dockerfile
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.12
3.0.13
2 changes: 1 addition & 1 deletion generate-dockerfiles.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 2 additions & 1 deletion run.sh
Original file line number Diff line number Diff line change
@@ -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 \
Expand Down

0 comments on commit 15e19be

Please sign in to comment.