From 574e3999df41a8b5e7968723be8385f50e679a9e Mon Sep 17 00:00:00 2001 From: Friedemann Sommer Date: Tue, 29 Oct 2024 19:46:56 +0100 Subject: [PATCH] Update base images in Dockerfile Updated the Debian base image from 12.5-slim to 12.7-slim and the Alpine base image from 3.19.1 to 3.20.3. --- packaging/docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packaging/docker/Dockerfile b/packaging/docker/Dockerfile index c599be7..7794838 100644 --- a/packaging/docker/Dockerfile +++ b/packaging/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=$BUILDPLATFORM debian:12.5-slim as build +FROM --platform=$BUILDPLATFORM debian:12.7-slim as build ARG TARGETPLATFORM ARG BUILDPLATFORM COPY ./copy-binary.sh /opt/evt/scripts/copy-binary.sh @@ -6,7 +6,7 @@ COPY ./artifact-binaries /opt/evt/binaries RUN chmod ug+x /opt/evt/scripts/copy-binary.sh RUN /opt/evt/scripts/copy-binary.sh -FROM alpine:3.19.1 +FROM alpine:3.20.3 ARG UID=1000 ARG GID=1000 RUN addgroup --gid "${GID}" evt \