Skip to content

Commit 15e19be

Browse files
authored
v3.0.13 (#99)
Minor updates * Using latest base images Development updates * Adding --load to run.sh * Using PHP 8.2 as default version for run.sh
1 parent 6dfca0d commit 15e19be

File tree

8 files changed

+9
-8
lines changed

8 files changed

+9
-8
lines changed

5.6/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM bfren/apache:apache2.4.43-alpine3.8-3.0.7
1+
FROM bfren/apache:apache2.4.43-alpine3.8-3.0.8
22

33
LABEL org.opencontainers.image.source="https://github.com/bfren/docker-apache-php"
44

7.4/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM bfren/apache:apache2.4.56-alpine3.15-3.0.7
1+
FROM bfren/apache:apache2.4.56-alpine3.15-3.0.8
22

33
LABEL org.opencontainers.image.source="https://github.com/bfren/docker-apache-php"
44

8.0/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM bfren/apache:apache2.4.56-alpine3.16-3.0.7
1+
FROM bfren/apache:apache2.4.56-alpine3.16-3.0.8
22

33
LABEL org.opencontainers.image.source="https://github.com/bfren/docker-apache-php"
44

8.1/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM bfren/apache:apache2.4.57-alpine3.18-3.0.7
1+
FROM bfren/apache:apache2.4.57-alpine3.18-3.0.8
22

33
LABEL org.opencontainers.image.source="https://github.com/bfren/docker-apache-php"
44

8.2/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM bfren/apache:apache2.4.57-alpine3.18-3.0.7
1+
FROM bfren/apache:apache2.4.57-alpine3.18-3.0.8
22

33
LABEL org.opencontainers.image.source="https://github.com/bfren/docker-apache-php"
44

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.12
1+
3.0.13

generate-dockerfiles.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -euo pipefail
44

55
docker pull bfren/alpine
66

7-
BASE_REVISION="3.0.7"
7+
BASE_REVISION="3.0.8"
88
echo "Base: ${BASE_REVISION}"
99

1010
PHP_VERSIONS="5.6 7.4 8.0 8.1 8.2"

run.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
#!/bin/sh
22

33
IMAGE=`cat VERSION`
4-
PHP=${1:-8.0}
4+
PHP=${1:-8.2}
55

66
docker buildx build \
7+
--load \
78
--build-arg BF_IMAGE=apache-php \
89
--build-arg BF_VERSION=${IMAGE} \
910
-f ${PHP}/Dockerfile \

0 commit comments

Comments
 (0)