From b1ff4287a30a383d94e784f2c2040d9aed2744af Mon Sep 17 00:00:00 2001 From: Jonathan Ervine Date: Tue, 28 Apr 2020 16:40:43 +0800 Subject: [PATCH] modified: Dockerfile Fixed typo in the wget command --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6cf33f1..bbc4936 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ RUN zypper -n in tar wget curl gzip && \ groupadd -g $STEP_GID $STEP_GROUP && \ useradd -u $STEP_UID -g $STEP_GROUP -M $STEP_USER -RUN wget https://github.com/smallstep/certificates/releases/download/v\$STEP_VERSION/step-certificates_linux_$STEP_VERSION\_amd64.tar.gz && \ +RUN wget https://github.com/smallstep/certificates/releases/download/v$STEP_VERSION/step-certificates_linux_$STEP_VERSION\_amd64.tar.gz && \ tar -zxvf step-certificates_linux_$STEP_VERSION\_amd64.tar.gz -C /tmp/ && \ mv /tmp/step-certificates_$STEP_VERSION/bin/step /usr/local/bin/ && \ mkdir /home/step