Skip to content

Commit

Permalink
Update Dockerfile to use latest base images
Browse files Browse the repository at this point in the history
The Debian base image has been updated from version 12.7-slim to 12.8-slim, and the Alpine base image from 3.20.3 to 3.21.0.
  • Loading branch information
friedemannsommer committed Dec 8, 2024
1 parent 6d22b37 commit 5428824
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.7-slim as build
FROM --platform=$BUILDPLATFORM debian:12.8-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.20.3
FROM alpine:3.21.0
ARG UID=1000
ARG GID=1000
RUN addgroup --gid "${GID}" evt \
Expand Down

0 comments on commit 5428824

Please sign in to comment.