From 914ee1be81a7f8a0deb999d2f6d7337d754f39e6 Mon Sep 17 00:00:00 2001 From: Jonathan Ervine Date: Tue, 28 Apr 2020 16:46:59 +0800 Subject: [PATCH] modified: Dockerfile Fixed another typo --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c7203c7..1ef387b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,13 +21,13 @@ RUN zypper -n in tar wget curl gzip && \ 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 && \ - tar -zxvf step-certificates_linux_$STEP_VERSION\_amd64.tar.gz -C /tmp/ && \ + tar zxvf step-certificates_linux_$STEP_VERSION\_amd64.tar.gz -C /tmp/ && \ mv /tmp/step-certificates_$STEP_VERSION/bin/* /usr/local/bin/ && \ mkdir /home/step RUN wget https://github.com/smallstep/cli/releases/download/v$STEP_VERSION/step_linux_$STEP_VERSION\_amd64.tar.gz && \ - tar -zxvf step_linux_$STEP_VERSION\_amd64.tar.gz -C /tmp/ && \ - mv /tmp/step_\$STEP_VERSION/bin/step /usr/local/bin/ && \ + tar zxvf step_linux_$STEP_VERSION\_amd64.tar.gz -C /tmp/ && \ + mv /tmp/step_$STEP_VERSION/bin/step /usr/local/bin/ && \ mkdir /home/step RUN rm -rf step_linux_$STEP_VERSION\_amd64.tar.gz /tmp/step_$STEP_VERSION /tmp/step-certificates_$STEP_VERSION