From 9a694aee207bdba3a6366b5fe093ed4190b5ef62 Mon Sep 17 00:00:00 2001 From: Jonathan Ervine Date: Thu, 23 Apr 2020 13:03:36 +0800 Subject: [PATCH] modified: Dockerfile Fixed typo in tar command --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5f1ccc0..b2a8c76 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ 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 -xxvf step_linux_$STEP_VERSION_amd64.tar.gz -C /step/bin/ + tar -zxvf step_linux_$STEP_VERSION_amd64.tar.gz -C /step/bin/ RUN rm step_linux_$STEP_VERSION_amd64.tar.gz EXPOSE 9000/tcp