mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-12-26 04:10:18 +01:00
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
9f1fe62e05
This commit is contained in:
parent
e837849d44
commit
eecf529138
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue