|
1 | 1 | # This Dockerfile builds an image containing Mac and Linux/AMD64 versions of |
2 | 2 | # the installer layered on top of the cluster-native Linux installer image. |
3 | 3 |
|
4 | | -FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.19-openshift-4.13 AS macbuilder |
| 4 | +FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.19-openshift-4.14 AS macbuilder |
5 | 5 | ARG TAGS="" |
6 | 6 | WORKDIR /go/src/github.com/openshift/installer |
7 | 7 | COPY . . |
8 | 8 | RUN GOOS=darwin GOARCH=amd64 DEFAULT_ARCH="$(go env GOHOSTARCH)" hack/build.sh |
9 | 9 |
|
10 | | -FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.19-openshift-4.13 AS macarmbuilder |
| 10 | +FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.19-openshift-4.14 AS macarmbuilder |
11 | 11 | ARG TAGS="" |
12 | 12 | WORKDIR /go/src/github.com/openshift/installer |
13 | 13 | COPY . . |
14 | 14 | RUN GOOS=darwin GOARCH=arm64 DEFAULT_ARCH="$(go env GOHOSTARCH)" hack/build.sh |
15 | 15 |
|
16 | | -FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.19-openshift-4.13 AS linuxbuilder |
| 16 | +FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.19-openshift-4.14 AS linuxbuilder |
17 | 17 | ARG TAGS="" |
18 | 18 | WORKDIR /go/src/github.com/openshift/installer |
19 | 19 | COPY . . |
20 | 20 | RUN GOOS=linux GOARCH=amd64 DEFAULT_ARCH="$(go env GOHOSTARCH)" hack/build.sh |
21 | 21 |
|
22 | | -FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.19-openshift-4.13 AS linuxarmbuilder |
| 22 | +FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.19-openshift-4.14 AS linuxarmbuilder |
23 | 23 | ARG TAGS="" |
24 | 24 | WORKDIR /go/src/github.com/openshift/installer |
25 | 25 | COPY . . |
26 | 26 | RUN GOOS=linux GOARCH=arm64 DEFAULT_ARCH="$(go env GOHOSTARCH)" hack/build.sh |
27 | 27 |
|
28 | | -FROM registry.ci.openshift.org/ocp/4.13:installer |
| 28 | +FROM registry.ci.openshift.org/ocp/4.14:installer |
29 | 29 | COPY --from=macbuilder /go/src/github.com/openshift/installer/bin/openshift-install /usr/share/openshift/mac/openshift-install |
30 | 30 | COPY --from=macarmbuilder /go/src/github.com/openshift/installer/bin/openshift-install /usr/share/openshift/mac_arm64/openshift-install |
31 | 31 | COPY --from=linuxbuilder /go/src/github.com/openshift/installer/bin/openshift-install /usr/share/openshift/linux_amd64/openshift-install |
|
0 commit comments