File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -70,6 +70,9 @@ ENV PHP_VERSION 7.2.33
7070ENV PHP_URL="https://www.php.net/distributions/php-7.2.33.tar.xz" PHP_ASC_URL="https://www.php.net/distributions/php-7.2.33.tar.xz.asc"
7171ENV PHP_SHA256="0f160a3483ffce36be5962fab7bcf09d605ee66c5707df83e4195cb796bbb03a" PHP_MD5=""
7272
73+
74+ COPY ./data/php-7.2.33.tar.xz /usr/src/php.tar.xz
75+
7376RUN set -eux; \
7477 \
7578 savedAptMark="$(apt-mark showmanual)" ; \
@@ -80,8 +83,8 @@ RUN set -eux; \
8083 mkdir -p /usr/src; \
8184 cd /usr/src; \
8285 \
83- curl -fsSL -o php.tar.xz "$PHP_URL" ; \
84- \
86+ # curl -fsSL -o php.tar.xz "$PHP_URL"; \
87+ # \
8588# if [ -n "$PHP_SHA256" ]; then \
8689# echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; \
8790# fi; \
@@ -108,6 +111,7 @@ RUN set -eux; \
108111
109112COPY --from=php-source /usr/local/bin/docker-php-source /usr/local/bin/
110113
114+
111115RUN set -eux; \
112116 \
113117 savedAptMark="$(apt-mark showmanual)" ; \
You can’t perform that action at this time.
0 commit comments