Change base image to centos:latest

This commit is contained in:
Jan Wozniak 2020-03-15 15:20:57 +01:00
parent 6c3e1fd23d
commit a45e9ea6b5

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