modified: Dockerfile

Fixed typo in tar command
This commit is contained in:
Jonathan Ervine 2020-04-23 13:03:36 +08:00
parent 6770df4f24
commit 9a694aee20

View File

@ -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