Skip to content
This repository has been archived by the owner on Jan 24, 2023. It is now read-only.

chore: Update from ubi8/go-toolset:1.17.12-11 to ubi8/go-toolset:1.18.4-8 #26

Open
wants to merge 2 commits into
base: 7.56.x
Choose a base branch
from
Open
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 Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,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.12-11 as builder
FROM registry.access.redhat.com/ubi8/go-toolset:1.18.4-8 as builder
ENV GOPATH=/tmp/go/

ENV REST_SERVER_TAG=v0.10.0
Expand All @@ -22,7 +22,7 @@ RUN export ARCH="$(uname -m)" && \
GOOS=linux GOARCH=${ARCH} CGO_ENABLED=0 go build -mod=vendor -o rest-server ./cmd/rest-server

# https://access.redhat.com/containers/?tab=tags#/registry.access.redhat.com/ubi8/ubi-micro
FROM registry.access.redhat.com/ubi8/ubi-micro:8.6-526
FROM registry.access.redhat.com/ubi8/ubi-micro:8.7-1

COPY --from=builder /tmp/go/rest-server/rest-server /usr/local/bin/rest-server
COPY --from=builder /tmp/go/rest-server/LICENSE /usr/local/bin/rest-server-LICENSE.txt
Expand Down