Update Dockerfile

Update alpine version as 3.15 is no longer available, which breaks build
This commit is contained in:
Mark Baseggio 2024-06-06 16:04:09 +01:00 committed by GitHub
parent 06ab7b77b1
commit 5f1cfc00f4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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