Fix tar extract error due to HTTP redirect

This commit is contained in:
Zach Borboa
2020-05-18 22:22:45 -07:00
parent 25c37e8512
commit 8f5a4604ec
+1 -1
View File
@@ -44,7 +44,7 @@ RUN mkdir --parents "/tmp/openssl/" && \
RUN mkdir --parents "/usr/src/php/" && \
curl --silent --show-error --output "php.tar.xz" \
"https://secure.php.net/distributions/php-5.3.29.tar.xz" && \
"https://www.php.net/distributions/php-5.3.29.tar.xz" && \
tar --extract --file "php.tar.xz" --directory "/usr/src/php/" --strip-components="1" && \
rm "php.tar.xz"* && \
cd "/usr/src/php/" && \