Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update from ubi8/go-toolset:1.20.10-10 to ubi8/go-toolset:1.20.12-5 #284

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build/dockerfiles/brew.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.20.12-5 as builder
ENV GOPATH=/go/ \
CGO_ENABLED=1
USER root
Expand All @@ -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.9-1161 as runtime
COPY --from=builder /rootfs /
RUN microdnf install -y openssl; microdnf clean -y all
USER unprivilegeduser
Expand Down
4 changes: 2 additions & 2 deletions build/dockerfiles/rhel.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.20.12-5 as builder
ENV GOPATH=/go/ \
CGO_ENABLED=1
USER root
Expand All @@ -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.9-1161 as runtime
COPY --from=builder /rootfs /
RUN microdnf install -y openssl && \
microdnf -y update && \
Expand Down
Loading