Skip to content

Commit 3c2373c

Browse files
author
Lee Jones
committed
Dockerfile: Tell tar not to be verbose
There is no need to print out the name of every file as it is extracted. This only serves to cloud the log making it unusable. Signed-off-by: Lee Jones <lee.jones@linaro.org>
1 parent d6d7be5 commit 3c2373c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ RUN set -x; BUILDDEPS="python make git g++" \
4141
&& curl -fSL "https://releases.rocket.chat/${RC_VERSION}/download" -o rocket.chat.tgz \
4242
&& curl -fSL "https://releases.rocket.chat/${RC_VERSION}/asc" -o rocket.chat.tgz.asc \
4343
&& gpg --batch --verify rocket.chat.tgz.asc rocket.chat.tgz \
44-
&& tar zxvf rocket.chat.tgz \
44+
&& tar zxf rocket.chat.tgz \
4545
&& rm rocket.chat.tgz rocket.chat.tgz.asc \
4646
&& cd bundle/programs/server \
4747
&& npm install \

0 commit comments

Comments
 (0)