Skip to content

Commit

Permalink
Change base image of go-toolset from ubi to openshift release
Browse files Browse the repository at this point in the history
This PR change the base image from registry.access.redhat.com/ubi8/go-toolset:1.21
to registry.ci.openshift.org/openshift/release:rhel-8-release-golang-1.21-openshift-4.17.
Both registry is not behind auth and user can pull image without login
to it. The benefit of using the openshift registry is to update the go
version to 1.22 (in next commit) which is not part of go-toolset yet and not sure how
much time it will take.
  • Loading branch information
praveenkumar committed Sep 19, 2024
1 parent 3a2d864 commit 4948e01
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion images/build-e2e/Containerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

FROM registry.access.redhat.com/ubi8/go-toolset:1.21 AS builder
FROM registry.ci.openshift.org/openshift/release:rhel-8-release-golang-1.21-openshift-4.17 AS builder

USER root

Expand Down
2 changes: 1 addition & 1 deletion images/build-integration/Containerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

FROM registry.access.redhat.com/ubi8/go-toolset:1.21 AS builder
FROM registry.ci.openshift.org/openshift/release:rhel-8-release-golang-1.21-openshift-4.17 AS builder

USER root

Expand Down
2 changes: 1 addition & 1 deletion images/build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.access.redhat.com/ubi8/go-toolset:1.21
FROM registry.ci.openshift.org/openshift/release:rhel-8-release-golang-1.21-openshift-4.17
MAINTAINER CRC <[email protected]>

WORKDIR $APP_ROOT/src
Expand Down

0 comments on commit 4948e01

Please sign in to comment.