From cfa1b0a8113dc47960f0dc6031e2f57fb06409c2 Mon Sep 17 00:00:00 2001 From: Jonathan Ervine Date: Tue, 28 Apr 2020 22:30:18 +0800 Subject: [PATCH] modified: Dockerfile Fixed to be a zypper command --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1675d22..d89b309 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 apk --update add expect +RUN zypper in -n expect COPY entrypoint.sh /home/step/ RUN chmod +x /home/step/entrypoint.sh