-
Notifications
You must be signed in to change notification settings - Fork 244
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change base image of go-toolset from ubi to openshift release
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
1 parent
3a2d864
commit 4948e01
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|