chore: bump docker runtime os image

This commit is contained in:
Paul Campbell 2024-07-05 07:58:53 +01:00
parent 6bbc89490a
commit f61c556f5b

View file

@ -15,12 +15,12 @@ COPY . .
RUN cargo build --release --bin git-next && \
strip target/release/git-next
FROM docker.io/debian:stable-20240423-slim AS runtime
FROM docker.io/debian:stable-20240701-slim AS runtime
WORKDIR /app
RUN apt-get update && \
apt-get install --no-install-recommends -y \
git=1:2.39.2-1.1 \
libssl3=3.0.11-1~deb12u2 \
libssl3=3.0.13-1~deb12u1 \
ca-certificates=20230311 \
&& \
rm -rf /var/lib/apt/lists/*