From eecf529138b69daffd30a81a24f607ea40cd7d89 Mon Sep 17 00:00:00 2001 From: Michael Manganiello Date: Thu, 11 May 2023 13:23:58 -0300 Subject: [PATCH] Dockerfile: Use Go 1.20 by default (#550) Use Go 1.20 by default in Dockerfile Updating the default Go version used in the Dockerfile, to the latest one supported by the project at the moment. Also, Go `1.17` support was removed in https://github.com/dutchcoders/transfer.sh/commit/9f1fe62e05115bd355799be7a633231686363c48 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cde5483..ada4fc3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -# Default to Go 1.17 -ARG GO_VERSION=1.17 +# Default to Go 1.20 +ARG GO_VERSION=1.20 FROM golang:${GO_VERSION}-alpine as build # Necessary to run 'go get' and to compile the linked binary