From a71931f126e53a6f6dd9416d54249f3f860aa196 Mon Sep 17 00:00:00 2001 From: Lee Jones Date: Thu, 29 Nov 2018 11:53:48 +0000 Subject: [PATCH] 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 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0dd80b2..4f0d08f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 \