From ee8f698d5f09c735f3e069359981aadd9dafc66f Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Tue, 17 Dec 2024 14:19:10 +0100 Subject: [PATCH] Update to Alpine 3.21, install Cargo --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4a126ae..eea5021 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,12 @@ -FROM alpine:3.18 AS buildbase +FROM alpine:3.21 AS buildbase RUN apk add --update --no-cache clang llvm lld cmake make pkgconf -RUN apk add --update --no-cache build-base flex bison +RUN apk add --update --no-cache build-base flex bison cargo LABEL org.opencontainers.image.source https://github.com/XboxDev/nxdk-buildbase -FROM alpine:3.18 AS runbase +FROM alpine:3.21 AS runbase RUN apk add --update --no-cache clang llvm lld cmake make pkgconf