From b3117aaaf9f00a0022b6d328102123242551986f Mon Sep 17 00:00:00 2001 From: Julian Rother <julian@cccv.de> Date: Sun, 5 Dec 2021 21:19:32 +0100 Subject: [PATCH] Next attempt to get Dockerfile.meteor working --- Dockerfile.meteor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.meteor b/Dockerfile.meteor index a0cf957..93832f8 100644 --- a/Dockerfile.meteor +++ b/Dockerfile.meteor @@ -8,8 +8,8 @@ RUN apt-get -qq update && \ apt-get -qq clean && \ lsb_release -a && uname -a -# The package only contains an ".meteor" directory that ends up in "/root/.meteor" RUN cd && \ wget "https://static-meteor.netdna-ssl.com/packages-bootstrap/${METEOR_VERSION}/meteor-bootstrap-os.linux.x86_64.tar.gz" -O meteor-bootstrap.tar.gz && \ - tar -xzf meteor-bootstrap.tar.gz && \\ + # The package only contains an ".meteor" directory that ends up in "/root/.meteor" + tar -q -xzf meteor-bootstrap.tar.gz && \ rm meteor-bootstrap.tar.gz -- GitLab