Update Alpine Dockerfile to use Alpine 3.17 (#2277)

* Update Alpine Dockerfile to use Alpine 3.17
* Update golang version to use Golang 1.19
This commit is contained in:
abraunegg 2022-12-30 12:07:29 +11:00 committed by GitHub
parent ad20628dbe
commit 54e1ab0c16
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
# -*-Dockerfile-*-
ARG ALPINE_VERSION=3.16
ARG GO_VERSION=1.17
ARG ALPINE_VERSION=3.17
ARG GO_VERSION=1.19
ARG GOSU_VERSION=1.14
FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS builder-gosu