-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
12 lines (11 loc) · 694 Bytes
/
Dockerfile
File metadata and controls
12 lines (11 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
FROM registry.svc.ci.openshift.org/openshift/release:golang-1.13 AS builder
WORKDIR /go/src/github.com/openshift/openstack-cinder-csi-driver-operator
COPY . .
RUN make
FROM registry.svc.ci.openshift.org/openshift/origin-v4.0:base
COPY --from=builder /go/src/github.com/openshift/openstack-cinder-csi-driver-operator/openstack-cinder-csi-driver-operator /usr/bin/
COPY bundle /bundle
ENTRYPOINT ["/usr/bin/openstack-cinder-csi-driver-operator"]
LABEL com.redhat.delivery.appregistry=true
LABEL io.k8s.display-name="OpenShift openstack-cinder-csi-driver-" \
io.k8s.description="The openstack-cinder-csi-driver-operator installs and maintains the OpenStack Cinder CSI Driver on a cluster."