modified: Dockerfile

Fixed zypper command line
This commit is contained in:
Jonathan Ervine 2020-04-28 22:40:52 +08:00
parent cfa1b0a811
commit 474d5640bb

View File

@ -11,7 +11,7 @@ ENV KUBE_LATEST_VERSION="v1.14.2"
USER root
RUN curl -L https://storage.googleapis.com/kubernetes-release/release/${KUBE_LATEST_VERSION}/bin/linux/amd64/kubectl -o /usr/local/bin/kubectl \
&& chmod +x /usr/local/bin/kubectl
RUN zypper in -n expect
RUN zypper in -y expect
COPY entrypoint.sh /home/step/
RUN chmod +x /home/step/entrypoint.sh