diff --git a/Dockerfile b/Dockerfile index 5c89000..dfab561 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,10 @@ RUN --mount=type=cache,target=/usr/local/cargo,from=rust:latest,source=/usr/loca # Runtime image FROM debian:bookworm-slim -RUN apt-get update -y && apt-get install -y ca-certificates fuse3 sqlite3 +RUN apt-get update -y && apt-get install -y ca-certificates fuse3 sqlite3 && \ + apt-get clean autoclean && \ + apt-get autoremove --yes && \ + rm -rf /var/lib/{apt,dpkg,cache,log}/ WORKDIR /app