diff --git a/build/dockerfiles/brew.Dockerfile b/build/dockerfiles/brew.Dockerfile index c28769d0..a147640c 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.19.13-2 as builder +FROM rhel8/go-toolset:1.20.10-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.8-1072 as runtime +FROM registry.access.redhat.com/ubi8-minimal:8.9-1029 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 f06dedf8..ea92884c 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.19.13-2 as builder +FROM registry.access.redhat.com/ubi8/go-toolset:1.20.10-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.8-1072 as runtime +FROM registry.access.redhat.com/ubi8-minimal:8.9-1029 as runtime COPY --from=builder /rootfs / RUN microdnf install -y openssl && \ microdnf -y update && \