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 c3ef908 commit 07aa146Copy full SHA for 07aa146
Dockerfile
@@ -23,9 +23,8 @@ ENV TIMEZONE=${timezone:-"Asia/Shanghai"} \
23
RUN set -ex \
24
# install composer
25
&& cd /tmp \
26
- && wget https://github.com/composer/composer/releases/download/${COMPOSER_VERSION}/composer.phar \
27
- && chmod u+x composer.phar \
28
- && mv composer.phar /usr/local/bin/composer \
+ && wget -nv -O /usr/local/bin/composer https://github.com/composer/composer/releases/download/${COMPOSER_VERSION}/composer.phar \
+ && chmod u+x /usr/local/bin/composer \
29
# show php version and extensions
30
&& php -v \
31
&& php -m \
0 commit comments