13 lines
510 B
Docker
13 lines
510 B
Docker
FROM registry.svc.ci.openshift.org/ocp/builder:rhel-8-golang-1.15-openshift-4.7
|
|
COPY . /go/src/github.com/openshift/csi-driver-nfs
|
|
RUN cd /go/src/github.com/openshift/csi-driver-nfs && \
|
|
go build -o /go/src/github.com/openshift/csi-driver-nfs/nfsplugin cmd/nfsplugin/main.go
|
|
|
|
FROM registry.svc.ci.openshift.org/ocp/4.7:base
|
|
|
|
COPY --from=0 /go/src/github.com/openshift/csi-driver-nfs/nfsplugin /usr/bin/
|
|
|
|
RUN yum -y install nfs-utils && yum -y install jq && yum clean all
|
|
|
|
ENTRYPOINT ["/usr/bin/nfsplugin"]
|