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 87b7fc9 commit 1661675Copy full SHA for 1661675
.ci/Dockerfile
@@ -13,12 +13,12 @@ RUN apt-get install -y \
13
zip \
14
libyaml-dev \
15
-qq > /dev/null \
16
- && docker-php-ext-install zip
+ && docker-php-ext-install zip > /dev/null
17
18
# Install yaml extension for PHP
19
-RUN pecl channel-update pecl.php.net
+RUN pecl channel-update pecl.php.net > /dev/null
20
RUN pecl install yaml > /dev/null
21
-RUN docker-php-ext-enable yaml
+RUN docker-php-ext-enable yaml > /dev/null
22
23
# Print PHP version
24
RUN php -v
@@ -32,7 +32,7 @@ RUN composer --version
32
COPY composer.json .
33
34
# Install dependencies with composer
35
-RUN composer install --no-progress
+RUN composer install --no-progress > /dev/null
36
37
COPY . .
38
0 commit comments