chore: Update from ubi8/go-toolset:1.16.7-5 to ubi8/go-toolset:1.16.12-2 (#1266)

* chore: Update from ubi8/go-toolset:1.16.7-5 to ubi8/go-toolset:1.16.12-2

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

* chore: Update from ubi8-minimal:8.5-204 to ubi8-minimal:8.5-218

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

Co-authored-by: Mykhailo Kuznietsov <mkuznets@redhat.com>
pull/1267/head
che-bot 2021-12-21 23:26:03 +01:00 committed by GitHub
parent 7f8b40d06f
commit 7b86c37196
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.7-5 as builder
FROM registry.access.redhat.com/ubi8/go-toolset:1.16.12-2 as builder
ENV GOPATH=/go/
ENV RESTIC_TAG=v0.12.0
ARG DEV_WORKSPACE_CONTROLLER_VERSION="v0.9.0"
@ -61,7 +61,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-204
FROM registry.access.redhat.com/ubi8-minimal:8.5-218
# 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" && \