csi-driver-nfs/Dockerfile
Patrick Ohly 1e5a0c1634 switch to csi-release-tools
This imports the shared csi-release-tools and uses it for Travis CI
and building. The binary and image name are "nfsplugin", as before.
2019-02-20 09:10:47 +01:00

9 lines
224 B
Docker

FROM centos:7.4.1708
# 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
ENTRYPOINT ["/nfsplugin"]