From ef5a4b68bbf1107cadcd4c2a981a52c0ae438104 Mon Sep 17 00:00:00 2001 From: Paolo Barbolini Date: Sat, 29 Jul 2023 22:33:26 +0200 Subject: [PATCH] docker: bump Debian to v12 (#200) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 955a0d5..7732f3e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ -FROM rust:bullseye as build +FROM rust:bookworm as build COPY . /src RUN cargo install --path /src -FROM debian:bullseye +FROM debian:bookworm LABEL org.opencontainers.image.source https://github.com/deps-rs/deps.rs