Skip to content

Commit a4e05f7

Browse files
committed
refactor: Use quiet mode of wget
1 parent 7948768 commit a4e05f7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Dockerfile.base

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ ARG PLUGIN_UPLOADER_VERSION=0.3.16
2727
ARG PHP_SCOPER_VERSION=0.14.0
2828

2929
RUN \
30-
wget https://github.com/FriendsOfShopware/FroshPluginUploader/releases/download/${PLUGIN_UPLOADER_VERSION}/frosh-plugin-upload.phar -O /opt/bin/plugin-uploader && \
31-
wget https://github.com/humbug/php-scoper/releases/download/${PHP_SCOPER_VERSION}/php-scoper.phar -O /opt/bin/php-scoper && \
30+
wget -q https://github.com/FriendsOfShopware/FroshPluginUploader/releases/download/${PLUGIN_UPLOADER_VERSION}/frosh-plugin-upload.phar -O /opt/bin/plugin-uploader && \
31+
wget -q https://github.com/humbug/php-scoper/releases/download/${PHP_SCOPER_VERSION}/php-scoper.phar -O /opt/bin/php-scoper && \
3232
chmod +x /opt/bin/plugin-uploader /opt/bin/php-scoper && \
33-
wget https://raw.githubusercontent.com/shopware/platform/v6.4.5.1/src/Core/TestBootstrapper.php -O /opt/share/shopware/tests/TestBootstrapperFallback.php
33+
wget -q https://raw.githubusercontent.com/shopware/platform/v6.4.5.1/src/Core/TestBootstrapper.php -O /opt/share/shopware/tests/TestBootstrapperFallback.php
3434

3535
COPY --from=composer/composer:2.4.4-bin /composer /usr/bin/composer
3636

0 commit comments

Comments
 (0)