From 82f40bcaea2cb17ba5d11c72e414daf9b70a1485 Mon Sep 17 00:00:00 2001 From: Job79 <job@plabble.org> Date: Thu, 1 Feb 2024 19:57:09 +0100 Subject: [PATCH] build(Containerfile): use alpine 3.19 for last buildstep --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index d0811e4..08cb8dd 100644 --- a/Containerfile +++ b/Containerfile @@ -18,7 +18,7 @@ RUN case "$(apk --print-arch)" in \ mv ./target/aarch64-unknown-linux-musl /release ;; \ esac -FROM alpine:edge +FROM alpine:3.19 WORKDIR /app RUN mkdir /app/wwwroot