From 6615ec323a8343dfd073806ea22beca37b685405 Mon Sep 17 00:00:00 2001 From: Joep de Jong Date: Fri, 29 Sep 2023 17:50:13 +0200 Subject: [PATCH] Switch to bookworm --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0f943b4..cbe04f9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM rust:latest AS builder +FROM rust:bookworm AS builder WORKDIR /usr/src/passes COPY . . RUN cargo install --path . -FROM debian:bullseye-slim +FROM debian:bookworm-slim RUN apt-get update && apt-get install -y libssl-dev COPY --from=builder /usr/local/cargo/bin/passes /usr/local/bin/passes