File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -12,11 +12,18 @@ COPY . .
1212COPY --from=providers /go/src/github.com/openshift/installer/terraform/bin/ terraform/bin/
1313RUN DEFAULT_ARCH="$(go env GOHOSTARCH)" hack/build.sh
1414RUN go run -mod=vendor hack/build-coreos-manifest.go
15+ RUN DEFAULT_ARCH="$(go env GOHOSTARCH)" hack/build-node-joiner.sh
1516
17+ FROM registry.ci.openshift.org/ocp/4.16:cli-artifacts AS tools
1618
1719FROM registry.ci.openshift.org/ocp/4.16:base
1820COPY --from=builder /go/src/github.com/openshift/installer/bin/openshift-install /bin/openshift-install
1921COPY --from=builder /go/src/github.com/openshift/installer/bin/manifests/ /manifests/
22+ # node-joiner requirements
23+ COPY --from=builder /go/src/github.com/openshift/installer/bin/node-joiner /bin/node-joiner
24+ COPY --from=tools /usr/bin/oc /bin/oc
25+ RUN dnf install -y nmstate
26+
2027RUN mkdir /output && chown 1000:1000 /output
2128USER 1000:1000
2229ENV PATH /bin
You can’t perform that action at this time.
0 commit comments