Dockerfile: fix alpine version

The go1.20 image is not published with alpine 3.15; updating the version.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2024-07-15 10:59:56 +02:00
parent 06ab7b77b1
commit ed600c7116
No known key found for this signature in database
GPG key ID: 76698F39D527CE8C

View file

@ -1,5 +1,5 @@
ARG BASE_IMAGE_BUILDER=golang
ARG ALPINE_VERSION=3.15
ARG ALPINE_VERSION=3.19
ARG GO_VERSION=1.20
FROM ${BASE_IMAGE_BUILDER}:${GO_VERSION}-alpine${ALPINE_VERSION} AS builder