This imports the shared csi-release-tools and uses it for Travis CI and building. The binary and image name are "nfsplugin", as before.
9 lines
224 B
Docker
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"]
|