Skip to content

Commit a71931f

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 8320844 commit a71931f

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
@@ -22,7 +22,7 @@ RUN set -x; BUILDDEPS="python make git g++" \
2222
&& curl -fSL "https://releases.rocket.chat/${RC_VERSION}/download" -o rocket.chat.tgz \
2323
&& curl -fSL "https://releases.rocket.chat/${RC_VERSION}/asc" -o rocket.chat.tgz.asc \
2424
&& gpg --batch --verify rocket.chat.tgz.asc rocket.chat.tgz \
25-
&& tar zxvf rocket.chat.tgz \
25+
&& tar zxf rocket.chat.tgz \
2626
&& rm rocket.chat.tgz rocket.chat.tgz.asc \
2727
&& cd bundle/programs/server \
2828
&& npm install \

0 commit comments

Comments
 (0)