From a45e9ea6b5f638bf48b66ed6a08ed17032d43cec Mon Sep 17 00:00:00 2001 From: Jan Wozniak Date: Sun, 15 Mar 2020 15:20:57 +0100 Subject: [PATCH] Change base image to centos:latest --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 13f5d248..489fbc26 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ -FROM centos:7.4.1708 +FROM centos:latest # Copy nfsplugin from build _output directory COPY bin/nfsplugin /nfsplugin -RUN yum -y install nfs-utils && yum -y install epel-release && yum -y install jq && yum clean all +RUN yum -y install nfs-utils epel-release jq && yum clean all ENTRYPOINT ["/nfsplugin"]