We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7aac4c commit 49b4faaCopy full SHA for 49b4faa
1 file changed
Dockerfile
@@ -2,9 +2,9 @@ FROM curlimages/curl AS phar-downloader
2
3
ARG PIE_VERSION
4
5
-RUN curl -L --output /tmp/pie https://github.com/php/pie/releases/download/${PIE_VERSION}/pie.phar \
+RUN curl -fsSL --output /tmp/pie https://github.com/php/pie/releases/download/${PIE_VERSION}/pie.phar \
6
&& chmod +x /tmp/pie \
7
- && curl -L --output /tmp/pie.asc https://github.com/php/pie/releases/download/${PIE_VERSION}/pie.phar.asc
+ && curl -fsSL --output /tmp/pie.asc https://github.com/php/pie/releases/download/${PIE_VERSION}/pie.phar.asc
8
9
FROM scratch AS standalone-binary
10
0 commit comments