From 91b6dc1521e1e679d1e25a70d5c8b36bf583b9e6 Mon Sep 17 00:00:00 2001 From: "Brian L. Troutwine" Date: Mon, 16 Dec 2024 18:23:36 -0800 Subject: [PATCH] Update lading container base image This commit updates the lading base OS from Debian bullseye to the latest stable bookworm. Signed-off-by: Brian L. Troutwine --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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