diff --git a/Dockerfile b/Dockerfile index 92a721990..7ad6665dc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Update the rust version in-sync with the version in rust-toolchain.toml -FROM docker.io/rust:1.81.0-bullseye AS builder +FROM docker.io/rust:1.81.0-bookworm AS builder RUN apt-get update && apt-get install -y \ protobuf-compiler fuse3 libfuse3-dev \ @@ -9,8 +9,8 @@ WORKDIR /app COPY . /app RUN cargo build --release --locked --bin lading --features logrotate_fs -FROM docker.io/debian:bullseye-20240701-slim -RUN apt-get update && apt-get install -y libfuse3-dev=3.10.3-2 fuse3=3.10.3-2 && rm -rf /var/lib/apt/lists/* +FROM docker.io/debian:bookworm-20241202-slim +RUN apt-get update && apt-get install -y libfuse3-dev=3.14.0-4 fuse3=3.14.0-4 && rm -rf /var/lib/apt/lists/* COPY --from=builder /app/target/release/lading /usr/bin/lading # smoke test