Skip to content

Commit

Permalink
Dockerfile: Tell tar not to be verbose
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
Lee Jones committed Nov 29, 2018
1 parent 8320844 commit a71931f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ RUN set -x; BUILDDEPS="python make git g++" \
&& curl -fSL "https://releases.rocket.chat/${RC_VERSION}/download" -o rocket.chat.tgz \
&& curl -fSL "https://releases.rocket.chat/${RC_VERSION}/asc" -o rocket.chat.tgz.asc \
&& gpg --batch --verify rocket.chat.tgz.asc rocket.chat.tgz \
&& tar zxvf rocket.chat.tgz \
&& tar zxf rocket.chat.tgz \
&& rm rocket.chat.tgz rocket.chat.tgz.asc \
&& cd bundle/programs/server \
&& npm install \
Expand Down

0 comments on commit a71931f

Please sign in to comment.