From 035c3925a63041482fe5a1063660a49463cf34f6 Mon Sep 17 00:00:00 2001 From: Julian Rother <julian@cccv.de> Date: Sun, 5 Dec 2021 21:23:03 +0100 Subject: [PATCH] More fixing of Dockerfile.meteor --- Dockerfile.meteor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.meteor b/Dockerfile.meteor index 93832f8..1b92152 100644 --- a/Dockerfile.meteor +++ b/Dockerfile.meteor @@ -9,7 +9,7 @@ RUN apt-get -qq update && \ lsb_release -a && uname -a 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 && \ + wget -q "https://static-meteor.netdna-ssl.com/packages-bootstrap/${METEOR_VERSION}/meteor-bootstrap-os.linux.x86_64.tar.gz" -O meteor-bootstrap.tar.gz && \ # The package only contains an ".meteor" directory that ends up in "/root/.meteor" - tar -q -xzf meteor-bootstrap.tar.gz && \ + tar -xzf meteor-bootstrap.tar.gz && \ rm meteor-bootstrap.tar.gz -- GitLab