Skip to content

Commit

Permalink
Update base images in Dockerfile
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
friedemannsommer committed Oct 29, 2024
1 parent 17f31e1 commit 574e399
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packaging/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
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
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 \
Expand Down

0 comments on commit 574e399

Please sign in to comment.