From c6c2863ded627aab247c93fa6142575ec5dfdcb0 Mon Sep 17 00:00:00 2001 From: Jonathan Ervine Date: Thu, 23 Apr 2020 13:58:47 +0800 Subject: [PATCH] modified: Dockerfile Fixed filenames with variables --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e8ca30e..e45d4de 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,8 +19,8 @@ RUN zypper -n in tar wget gzip && \ RUN wget https://github.com/smallstep/cli/releases/download/v$STEP_VERSION/step_linux_$STEP_VERSION\_amd64.tar.gz && \ mkdir -p /step/bin && \ - tar -zxvf step_linux_$STEP_VERSION_amd64.tar.gz -C /step/bin/ -RUN rm step_linux_$STEP_VERSION_amd64.tar.gz + tar -zxvf step_linux_$STEP_VERSION\_amd64.tar.gz -C /step/bin/ +RUN rm step_linux_$STEP_VERSION\_amd64.tar.gz EXPOSE 9000/tcp