diff --git a/build/dockerfiles/brew.Dockerfile b/build/dockerfiles/brew.Dockerfile index d11d9450..37e0c5ca 100644 --- a/build/dockerfiles/brew.Dockerfile +++ b/build/dockerfiles/brew.Dockerfile @@ -10,7 +10,7 @@ # # https://registry.access.redhat.com/rhel8/go-toolset -FROM rhel8/go-toolset:1.20.10-10 as builder +FROM rhel8/go-toolset:1.21.9-3 as builder ENV GOPATH=/go/ \ CGO_ENABLED=1 USER root @@ -27,7 +27,7 @@ RUN adduser unprivilegeduser && \ cp -rf /che-machine-exec/che-machine-exec /rootfs/go/bin # https://registry.access.redhat.com/ubi8-minimal -FROM registry.access.redhat.com/ubi8-minimal:8.9-1108 as runtime +FROM registry.access.redhat.com/ubi8-minimal:8.10-896 as runtime COPY --from=builder /rootfs / RUN microdnf install -y openssl; microdnf clean -y all USER unprivilegeduser diff --git a/build/dockerfiles/rhel.Dockerfile b/build/dockerfiles/rhel.Dockerfile index 73abe4ce..edcf8088 100644 --- a/build/dockerfiles/rhel.Dockerfile +++ b/build/dockerfiles/rhel.Dockerfile @@ -10,7 +10,7 @@ # # https://registry.access.redhat.com/ubi8/go-toolset -FROM registry.access.redhat.com/ubi8/go-toolset:1.20.10-10 as builder +FROM registry.access.redhat.com/ubi8/go-toolset:1.21.9-3 as builder ENV GOPATH=/go/ \ CGO_ENABLED=1 USER root @@ -27,7 +27,7 @@ RUN adduser unprivilegeduser && \ cp -rf /che-machine-exec/che-machine-exec /rootfs/go/bin # https://registry.access.redhat.com/ubi8-minimal -FROM registry.access.redhat.com/ubi8-minimal:8.9-1108 as runtime +FROM registry.access.redhat.com/ubi8-minimal:8.10-896 as runtime COPY --from=builder /rootfs / RUN microdnf install -y openssl && \ microdnf -y update && \