Update Go to 1.19.2 (#219)

This commit is contained in:
Nils Hanke 2022-10-06 10:31:12 -07:00 committed by GitHub
parent 4ccd96bf64
commit 803209b12b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
35 changed files with 50 additions and 47 deletions

View file

@ -5,7 +5,7 @@ RUN dnf -y update && \
dnf clean all
# Install Go
ARG GO_VER=1.19.1
ARG GO_VER=1.19.2
RUN wget -q https://go.dev/dl/go${GO_VER}.linux-amd64.tar.gz && \
tar -C /usr/local -xzf go${GO_VER}.linux-amd64.tar.gz && \
rm go${GO_VER}.linux-amd64.tar.gz