Skip to content

Commit

Permalink
chore(docker): upgrade Rust and libc version in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Nov 20, 2024
1 parent fc142e4 commit 8bd0607
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1.4.3-labs
FROM lukemathwalker/cargo-chef:0.1.63-rust-1.76-slim-buster AS chef
FROM lukemathwalker/cargo-chef:0.1.68-rust-1.82.0-slim AS chef
WORKDIR app

FROM chef AS planner
Expand All @@ -14,7 +14,7 @@ COPY . .
RUN cargo build --release --locked --no-default-features --features github --features gitlab --features bitbucket
RUN rm -f target/release/deps/git_cliff*

FROM debian:buster-slim as runner
FROM debian:bullseye-slim as runner

# Everything inside this container will be explicitly mounted by the end user,
# so we can sidestep some Git security restrictions. This app recommends
Expand Down

0 comments on commit 8bd0607

Please sign in to comment.