Skip to content

Commit

Permalink
Dockerfile: Use Go 1.20 by default (#550)
Browse files Browse the repository at this point in the history
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
9f1fe62
  • Loading branch information
adamantike authored May 11, 2023
1 parent e837849 commit eecf529
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit eecf529

Please sign in to comment.