Skip to content

Commit a19dc1a

Browse files
committed
Update zlib download URLs
1 parent c540540 commit a19dc1a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

php-80/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ ENV VERSION_ZLIB=1.3
8080
ENV ZLIB_BUILD_DIR=${BUILD_DIR}/zlib
8181
RUN set -xe; \
8282
mkdir -p ${ZLIB_BUILD_DIR}; \
83-
curl -Ls http://zlib.net/zlib-${VERSION_ZLIB}.tar.xz \
83+
curl -Ls https://github.com/madler/zlib/releases/download/v${VERSION_ZLIB}/zlib-${VERSION_ZLIB}.tar.gz \
8484
| tar xJC ${ZLIB_BUILD_DIR} --strip-components=1
8585
WORKDIR ${ZLIB_BUILD_DIR}/
8686
RUN set -xe; \

php-81/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ ENV VERSION_ZLIB=1.3
8080
ENV ZLIB_BUILD_DIR=${BUILD_DIR}/zlib
8181
RUN set -xe; \
8282
mkdir -p ${ZLIB_BUILD_DIR}; \
83-
curl -Ls https://zlib.net/zlib-${VERSION_ZLIB}.tar.xz \
83+
curl -Ls https://github.com/madler/zlib/releases/download/v${VERSION_ZLIB}/zlib-${VERSION_ZLIB}.tar.gz \
8484
| tar xJC ${ZLIB_BUILD_DIR} --strip-components=1
8585
WORKDIR ${ZLIB_BUILD_DIR}/
8686
RUN set -xe; \

php-82/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ ENV VERSION_ZLIB=1.3
8080
ENV ZLIB_BUILD_DIR=${BUILD_DIR}/zlib
8181
RUN set -xe; \
8282
mkdir -p ${ZLIB_BUILD_DIR}; \
83-
curl -Ls https://zlib.net/zlib-${VERSION_ZLIB}.tar.xz \
83+
curl -Ls https://github.com/madler/zlib/releases/download/v${VERSION_ZLIB}/zlib-${VERSION_ZLIB}.tar.gz \
8484
| tar xJC ${ZLIB_BUILD_DIR} --strip-components=1
8585
WORKDIR ${ZLIB_BUILD_DIR}/
8686
RUN set -xe; \

php-83/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ ENV VERSION_ZLIB=1.3
8181
ENV ZLIB_BUILD_DIR=${BUILD_DIR}/zlib
8282
RUN set -xe; \
8383
mkdir -p ${ZLIB_BUILD_DIR}; \
84-
curl -Ls https://zlib.net/zlib-${VERSION_ZLIB}.tar.xz \
84+
curl -Ls https://github.com/madler/zlib/releases/download/v${VERSION_ZLIB}/zlib-${VERSION_ZLIB}.tar.gz \
8585
| tar xJC ${ZLIB_BUILD_DIR} --strip-components=1
8686
WORKDIR ${ZLIB_BUILD_DIR}/
8787
RUN set -xe; \

0 commit comments

Comments
 (0)