From 847b36af510e17f9bd34ddc9e8c877eb3eb73235 Mon Sep 17 00:00:00 2001 From: Michael Kriese Date: Tue, 19 Nov 2024 09:36:54 +0100 Subject: [PATCH] feat: update alpine to v3.20 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6ce45a7..019f7a1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # The base image for the build stage -FROM --platform=$BUILDPLATFORM alpine:3.15 AS build +FROM --platform=$BUILDPLATFORM alpine:3.20 AS build # Choose the appropriate Docuum binary to install. ARG TARGETPLATFORM @@ -8,7 +8,7 @@ COPY artifacts/docuum-aarch64-unknown-linux-musl /tmp/linux/arm64 RUN cp "/tmp/$TARGETPLATFORM" /usr/local/bin/docuum # A minimal base image -FROM --platform=$TARGETPLATFORM alpine:3.15 +FROM --platform=$TARGETPLATFORM alpine:3.20 # Install the Docker CLI. RUN apk add --no-cache docker-cli