Skip to content

Commit

Permalink
fix(docker): Upgrade debian build and runtime to bookworm
Browse files Browse the repository at this point in the history
  • Loading branch information
jontze committed Sep 10, 2024
1 parent 2177e7f commit 2c13328
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.github/
target/
helm/
.env
.github/
.env.example
.git
.gitignore
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM lukemathwalker/cargo-chef:latest-rust-1.81.0-slim-bullseye as build_base
FROM lukemathwalker/cargo-chef:latest-rust-1.81.0-slim-bookworm as build_base

FROM build_base as planner
WORKDIR /cadency
Expand Down Expand Up @@ -29,7 +29,7 @@ ENV CARGO_TERM_COLOR=always
RUN cargo build --release --bin cadency

# Downloads yt-dlp
FROM bitnami/minideb:bullseye as packages
FROM bitnami/minideb:bookworm as packages
WORKDIR /packages
COPY --from=builder /cadency/.yt-dlprc .
RUN YTDLP_VERSION=$(cat .yt-dlprc) && \
Expand Down

0 comments on commit 2c13328

Please sign in to comment.