Merge pull request #28 from wozniakjan/issue25/update_container_base_image

Change base image to centos:latest
This commit is contained in:
Kubernetes Prow Robot 2020-03-16 18:32:22 -07:00 committed by GitHub
commit 231deb04cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"]