Skip to content

Commit

Permalink
v7.0.3 (#188)
Browse files Browse the repository at this point in the history
Minor updates
* Using latest base images
  • Loading branch information
bfren authored Nov 25, 2023
1 parent 8335fc1 commit 90150f7
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions 7.4/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ WORKDIR /tmp
RUN \
# get the Nu scripts from the PHP image overlay
echo "Cloning Alpine overlay." && \
apk add git && git clone --branch v2.0.2 https://github.com/bfren/docker-php.git && \
apk add git && git clone --branch v2.0.3 https://github.com/bfren/docker-php.git && \
mkdir /overlay && \
mv docker-php/overlay/etc /overlay/

Expand All @@ -17,7 +17,7 @@ RUN \
# STAGE 1: create final image
#======================================================================================================================

FROM bfren/nginx:nginx1.20-alpine3.15-6.0.2 as final
FROM bfren/nginx:nginx1.20-alpine3.15-6.0.3 as final
COPY --from=php /overlay /

LABEL org.opencontainers.image.source="https://github.com/bfren/docker-nginx-php"
Expand Down
4 changes: 2 additions & 2 deletions 8.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ WORKDIR /tmp
RUN \
# get the Nu scripts from the PHP image overlay
echo "Cloning Alpine overlay." && \
apk add git && git clone --branch v2.0.2 https://github.com/bfren/docker-php.git && \
apk add git && git clone --branch v2.0.3 https://github.com/bfren/docker-php.git && \
mkdir /overlay && \
mv docker-php/overlay/etc /overlay/

Expand All @@ -17,7 +17,7 @@ RUN \
# STAGE 1: create final image
#======================================================================================================================

FROM bfren/nginx:nginx1.22-alpine3.16-6.0.2 as final
FROM bfren/nginx:nginx1.22-alpine3.16-6.0.3 as final
COPY --from=php /overlay /

LABEL org.opencontainers.image.source="https://github.com/bfren/docker-nginx-php"
Expand Down
4 changes: 2 additions & 2 deletions 8.1/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ WORKDIR /tmp
RUN \
# get the Nu scripts from the PHP image overlay
echo "Cloning Alpine overlay." && \
apk add git && git clone --branch v2.0.2 https://github.com/bfren/docker-php.git && \
apk add git && git clone --branch v2.0.3 https://github.com/bfren/docker-php.git && \
mkdir /overlay && \
mv docker-php/overlay/etc /overlay/

Expand All @@ -17,7 +17,7 @@ RUN \
# STAGE 1: create final image
#======================================================================================================================

FROM bfren/nginx:nginx1.24-alpine3.18-6.0.2 as final
FROM bfren/nginx:nginx1.24-alpine3.18-6.0.3 as final
COPY --from=php /overlay /

LABEL org.opencontainers.image.source="https://github.com/bfren/docker-nginx-php"
Expand Down
4 changes: 2 additions & 2 deletions 8.2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ WORKDIR /tmp
RUN \
# get the Nu scripts from the PHP image overlay
echo "Cloning Alpine overlay." && \
apk add git && git clone --branch v2.0.2 https://github.com/bfren/docker-php.git && \
apk add git && git clone --branch v2.0.3 https://github.com/bfren/docker-php.git && \
mkdir /overlay && \
mv docker-php/overlay/etc /overlay/

Expand All @@ -17,7 +17,7 @@ RUN \
# STAGE 1: create final image
#======================================================================================================================

FROM bfren/nginx:nginx1.24-alpine3.18-6.0.2 as final
FROM bfren/nginx:nginx1.24-alpine3.18-6.0.3 as final
COPY --from=php /overlay /

LABEL org.opencontainers.image.source="https://github.com/bfren/docker-nginx-php"
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.0.2
7.0.3
4 changes: 2 additions & 2 deletions generate-dockerfiles.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ set -euo pipefail

docker pull bfren/alpine

BASE_VERSION="6.0.2"
PHP_BRANCH="v2.0.2"
BASE_VERSION="6.0.3"
PHP_BRANCH="v2.0.3"
PHP_VERSIONS="7.4 8.0 8.1 8.2"

for V in ${PHP_VERSIONS} ; do
Expand Down

0 comments on commit 90150f7

Please sign in to comment.