forked from openshift/cloud-network-config-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
14 lines (10 loc) · 621 Bytes
/
Dockerfile
File metadata and controls
14 lines (10 loc) · 621 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.24-openshift-4.20 AS builder
WORKDIR /go/src/github.com/openshift/cloud-network-config-controller
COPY . .
RUN make build
FROM registry.ci.openshift.org/ocp/4.20:base-rhel9
COPY --from=builder /go/src/github.com/openshift/cloud-network-config-controller/_output/bin/cloud-network-config-controller /usr/bin/
LABEL io.k8s.display-name="Cloud Network Config Controller" \
io.k8s.description="Controller performing cloud level network modification" \
io.openshift.tags="openshift" \
maintainer="Alexander Constantinescu <aconstan@redhat.com>"