Skip to content

Commit 8f93de1

Browse files
committed
Fix the tar command
1 parent a19dc1a commit 8f93de1

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
@@ -81,7 +81,7 @@ ENV ZLIB_BUILD_DIR=${BUILD_DIR}/zlib
8181
RUN set -xe; \
8282
mkdir -p ${ZLIB_BUILD_DIR}; \
8383
curl -Ls https://github.com/madler/zlib/releases/download/v${VERSION_ZLIB}/zlib-${VERSION_ZLIB}.tar.gz \
84-
| tar xJC ${ZLIB_BUILD_DIR} --strip-components=1
84+
| tar xzC ${ZLIB_BUILD_DIR} --strip-components=1
8585
WORKDIR ${ZLIB_BUILD_DIR}/
8686
RUN set -xe; \
8787
make distclean \

php-81/Dockerfile

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

php-82/Dockerfile

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

php-83/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ ENV ZLIB_BUILD_DIR=${BUILD_DIR}/zlib
8282
RUN set -xe; \
8383
mkdir -p ${ZLIB_BUILD_DIR}; \
8484
curl -Ls https://github.com/madler/zlib/releases/download/v${VERSION_ZLIB}/zlib-${VERSION_ZLIB}.tar.gz \
85-
| tar xJC ${ZLIB_BUILD_DIR} --strip-components=1
85+
| tar xzC ${ZLIB_BUILD_DIR} --strip-components=1
8686
WORKDIR ${ZLIB_BUILD_DIR}/
8787
RUN set -xe; \
8888
make distclean \

0 commit comments

Comments
 (0)