Update to Go 1.19.3

This commit is contained in:
Nils Hanke 2022-11-02 11:17:29 +01:00 committed by Nils Hanke
parent f60120bbbc
commit 6d2ec109d0
32 changed files with 41 additions and 41 deletions

View file

@ -6,7 +6,7 @@ RUN apt-get update && apt-get install -y \
git
# Install Go
ARG GO_VER=1.19.2
ARG GO_VER=1.19.3
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