File tree Expand file tree Collapse file tree 2 files changed +15
-14
lines changed Expand file tree Collapse file tree 2 files changed +15
-14
lines changed Original file line number Diff line number Diff line change
1
+ FROM registry.svc.ci.openshift.org/ocp/builder:rhel-8-golang-openshift-4.6 AS builder
2
+ WORKDIR /go/src/github.com/openshift/cluster-version-operator
3
+ COPY . .
4
+ RUN hack/build-go.sh; \
5
+ mkdir -p /tmp/build; \
6
+ cp _output/linux/$(go env GOARCH)/cluster-version-operator /tmp/build/cluster-version-operator
7
+
8
+ FROM registry.svc.ci.openshift.org/ocp/4.6:base
9
+ COPY --from=builder /tmp/build/cluster-version-operator /usr/bin/
10
+ COPY install /manifests
11
+ COPY vendor/github.com/openshift/api/config/v1/0000_00_cluster-version-operator_01_clusterversion.crd.yaml /manifests/
12
+ COPY vendor/github.com/openshift/api/config/v1/0000_00_cluster-version-operator_01_clusteroperator.crd.yaml /manifests/
13
+ COPY bootstrap /bootstrap
14
+ ENTRYPOINT ["/usr/bin/cluster-version-operator"]
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ Dockerfile.rhel
You can’t perform that action at this time.
0 commit comments