chore: Update from ubi8/go-toolset:1.16.12-4 to ubi8/go-toolset:1.16.12-7 (#1351)

* chore: Update from ubi8/go-toolset:1.16.12-4 to ubi8/go-toolset:1.16.12-7

Signed-off-by: Mykhailo Kuznietsov <mkuznets@redhat.com>

* chore: Update from ubi8-minimal:8.5-230.1645809059 to ubi8-minimal:8.5-240

Signed-off-by: Mykhailo Kuznietsov <mkuznets@redhat.com>

Co-authored-by: Mykhailo Kuznietsov <mkuznets@redhat.com>
pull/1356/head
che-bot 2022-03-19 04:45:14 +01:00 committed by GitHub
parent c9f2dde7a8
commit 17481bc1af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
#
# https://access.redhat.com/containers/?tab=tags#/registry.access.redhat.com/ubi8/go-toolset
FROM registry.access.redhat.com/ubi8/go-toolset:1.16.12-4 as builder
FROM registry.access.redhat.com/ubi8/go-toolset:1.16.12-7 as builder
ENV GOPATH=/go/
ARG DEV_WORKSPACE_CONTROLLER_VERSION="v0.13.0"
ARG DEV_HEADER_REWRITE_TRAEFIK_PLUGIN="main"
@ -51,7 +51,7 @@ RUN export ARCH="$(uname -m)" && if [[ ${ARCH} == "x86_64" ]]; then export ARCH=
CGO_ENABLED=0 GOOS=linux GOARCH=${ARCH} GO111MODULE=on go build -mod=vendor -a -o che-operator main.go
# https://access.redhat.com/containers/?tab=tags#/registry.access.redhat.com/ubi8-minimal
FROM registry.access.redhat.com/ubi8-minimal:8.5-230.1645809059
FROM registry.access.redhat.com/ubi8-minimal:8.5-240
# install httpd-tools for /usr/bin/htpasswd
RUN microdnf install -y httpd-tools && microdnf -y update && microdnf -y clean all && rm -rf /var/cache/yum && echo "Installed Packages" && rpm -qa | sort -V && echo "End Of Installed Packages" && \