Skip to content

Commit 87b7fc9

Browse files
committed
Reducing the output log size for CI jobs
1 parent 6176f77 commit 87b7fc9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.ci/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@ FROM php:${PHP_VERSION}
44
WORKDIR /usr/src/app
55

66
# Install git
7-
RUN apt-get update -q && \
8-
apt-get install -q -y --no-install-recommends git
7+
RUN apt-get update -qq > /dev/null && \
8+
apt-get install -y --no-install-recommends git -qq > /dev/null
99

1010
# Install zip extension for PHP
11-
RUN apt-get install -q -y \
11+
RUN apt-get install -y \
1212
libzip-dev \
1313
zip \
1414
libyaml-dev \
15+
-qq > /dev/null \
1516
&& docker-php-ext-install zip
1617

1718
# Install yaml extension for PHP

0 commit comments

Comments
 (0)