Compare commits

...

2 commits

Author SHA1 Message Date
12f562530c build: upgrade docker image to use debian:stable-20240722-slim
All checks were successful
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
2024-08-04 09:43:06 +01:00
f61f822bd4 build: upgrade git-next-builder to 2024-08-04 2024-08-04 09:42:36 +01:00

View file

@ -1,6 +1,6 @@
# Leveraging the pre-built Docker images with
# cargo-chef and the Rust toolchain
FROM git.kemitix.net/kemitix/git-next-builder:2024.07.05 AS chef
FROM git.kemitix.net/kemitix/git-next-builder:2024.08.04 AS chef
WORKDIR /app
FROM chef AS planner
@ -15,7 +15,7 @@ COPY . .
RUN cargo build --release --bin git-next && \
strip target/release/git-next
FROM docker.io/debian:stable-20240701-slim AS runtime
FROM docker.io/debian:stable-20240722-slim AS runtime
WORKDIR /app
RUN apt-get update && \
apt-get install --no-install-recommends -y \