chore: Update from ubi8/go-toolset:1.17.7-13 to ubi8/go-toolset:1.17.7-13.1655148239 (#1408)

* chore: Update from ubi8/go-toolset:1.17.7-13 to ubi8/go-toolset:1.17.7-13.1655148239

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

* chore: Update from ubi8-minimal:8.6-751 to ubi8-minimal:8.6-751.1655117800

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

Co-authored-by: Mykhailo Kuznietsov <mkuznets@redhat.com>
pull/1409/head
che-bot 2022-06-18 18:44:27 +02:00 committed by GitHub
parent 08de5aa109
commit b2f337c978
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.17.7-13 as builder
FROM registry.access.redhat.com/ubi8/go-toolset:1.17.7-13.1655148239 as builder
ENV GOPATH=/go/
ARG DEV_WORKSPACE_CONTROLLER_VERSION="v0.14.1"
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.6-751
FROM registry.access.redhat.com/ubi8-minimal:8.6-751.1655117800
# 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" && \