From 6323975b00e8411bf7b16ef81f6959333a820ff6 Mon Sep 17 00:00:00 2001 From: Mayank Shah Date: Thu, 19 Nov 2020 19:21:51 +0530 Subject: [PATCH] Update base image to `k8s.gcr.io/build-image/debian-base-amd64:v2.1.3` Signed-off-by: Mayank Shah --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e7b6e6ea..6a36f643 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,11 +12,11 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM centos:latest +FROM k8s.gcr.io/build-image/debian-base-amd64:v2.1.3 # Copy nfsplugin from build _output directory COPY bin/nfsplugin /nfsplugin -RUN yum -y install nfs-utils epel-release jq && yum clean all +RUN apt update && apt install -y nfs-common jq || true ENTRYPOINT ["/nfsplugin"]