deleted: .nfs000000000e0c87de00000001

modified:   Dockerfile
Fixed step archive extraction
This commit is contained in:
Jonathan Ervine 2020-04-28 16:06:02 +08:00
parent 3091dcda6c
commit cff677a1a6
2 changed files with 3 additions and 2 deletions

Binary file not shown.

View File

@ -21,10 +21,11 @@ RUN zypper -n in tar wget curl gzip && \
useradd -u $STEP_UID -g $STEP_GROUP -M $STEP_USER
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 /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 step_linux_$STEP_VERSION\_amd64.tar.gz
RUN rm -rf step_linux_$STEP_VERSION\_amd64.tar.gz /tmp/step_$STEP_VERSION
EXPOSE 9000/tcp