Skip to content

Commit 5dcb678

Browse files
authored
Merge pull request #211 from prathod09/updateGoVersion
fix: update Go and base image versions
2 parents 12a7e14 + 38f0261 commit 5dcb678

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

build/dockerfiles/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Red Hat, Inc. - initial API and implementation
1010
#
1111
# https://registry.access.redhat.com/ubi8/go-toolset
12-
FROM registry.access.redhat.com/ubi8/go-toolset:1.25.3 as builder
12+
FROM registry.access.redhat.com/ubi8/go-toolset:1.25.5 as builder
1313
ENV GOPATH=/go/ \
1414
GO111MODULE=on
1515

@@ -38,7 +38,7 @@ RUN adduser appuser && \
3838
make build
3939

4040
# https://registry.access.redhat.com/ubi8-minimal
41-
FROM registry.access.redhat.com/ubi8-minimal:8.10-1768785502
41+
FROM registry.access.redhat.com/ubi8-minimal:8.10-1769387960
4242
USER root
4343
RUN microdnf -y update && microdnf clean all && rm -rf /var/cache/yum && echo "Installed Packages" && rpm -qa | sort -V && echo "End Of Installed Packages"
4444
# CRW-528 copy actual cert

build/dockerfiles/brew.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Red Hat, Inc. - initial API and implementation
1010
#
1111
# https://registry.access.redhat.com/rhel8/go-toolset
12-
FROM rhel8/go-toolset:1.25.3 as builder
12+
FROM rhel8/go-toolset:1.25.5 as builder
1313
ENV GOPATH=/go/ \
1414
GO111MODULE=on
1515

@@ -27,7 +27,7 @@ RUN adduser appuser && \
2727
make build
2828

2929
# https://registry.access.redhat.com/ubi8-minimal
30-
FROM ubi8-minimal:8.10-1179
30+
FROM ubi8-minimal:8.10-1769387960
3131
USER root
3232
RUN microdnf -y update && microdnf clean all && rm -rf /var/cache/yum && echo "Installed Packages" && rpm -qa | sort -V && echo "End Of Installed Packages"
3333

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/che-incubator/kubernetes-image-puller
22

3-
go 1.25.6
3+
go 1.25.5
44

55
require (
66
github.com/google/go-cmp v0.6.0

0 commit comments

Comments
 (0)