Skip to content

Commit e1728c8

Browse files
Merge pull request openshift#6968 from openshift-bot/art-consistency-openshift-4.14-ose-installer-artifacts
Updating ose-installer-artifacts images to be consistent with ART
2 parents c80274d + 709c1af commit e1728c8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

images/installer-artifacts/Dockerfile.rhel

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
# This Dockerfile builds an image containing Mac and Linux/AMD64 versions of
22
# the installer layered on top of the cluster-native Linux installer image.
33

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
55
ARG TAGS=""
66
WORKDIR /go/src/github.com/openshift/installer
77
COPY . .
88
RUN GOOS=darwin GOARCH=amd64 DEFAULT_ARCH="$(go env GOHOSTARCH)" hack/build.sh
99

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
1111
ARG TAGS=""
1212
WORKDIR /go/src/github.com/openshift/installer
1313
COPY . .
1414
RUN GOOS=darwin GOARCH=arm64 DEFAULT_ARCH="$(go env GOHOSTARCH)" hack/build.sh
1515

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
1717
ARG TAGS=""
1818
WORKDIR /go/src/github.com/openshift/installer
1919
COPY . .
2020
RUN GOOS=linux GOARCH=amd64 DEFAULT_ARCH="$(go env GOHOSTARCH)" hack/build.sh
2121

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
2323
ARG TAGS=""
2424
WORKDIR /go/src/github.com/openshift/installer
2525
COPY . .
2626
RUN GOOS=linux GOARCH=arm64 DEFAULT_ARCH="$(go env GOHOSTARCH)" hack/build.sh
2727

28-
FROM registry.ci.openshift.org/ocp/4.13:installer
28+
FROM registry.ci.openshift.org/ocp/4.14:installer
2929
COPY --from=macbuilder /go/src/github.com/openshift/installer/bin/openshift-install /usr/share/openshift/mac/openshift-install
3030
COPY --from=macarmbuilder /go/src/github.com/openshift/installer/bin/openshift-install /usr/share/openshift/mac_arm64/openshift-install
3131
COPY --from=linuxbuilder /go/src/github.com/openshift/installer/bin/openshift-install /usr/share/openshift/linux_amd64/openshift-install

0 commit comments

Comments
 (0)