From b4d54cfccb5f74b6fe8e6f45cceb52e49880f594 Mon Sep 17 00:00:00 2001 From: Sebastian Bernauer Date: Fri, 16 Jun 2023 21:18:04 +0200 Subject: [PATCH] bump: Docker images to debian bookworm --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a3720c8..656412f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.70.0 as builder +FROM rust:1.70.0-bookworm as builder WORKDIR /breakwater COPY src/ src/ @@ -12,7 +12,7 @@ RUN rustup toolchain install nightly # We don't want to e.g. set "-C target-cpu=native", so that the binary should run everywhere RUN RUSTFLAGS='' cargo +nightly install --path . -FROM debian:bullseye-slim +FROM debian:bookworm-slim RUN apt-get update && \ apt-get install -y libvncserver1 ffmpeg && \ rm -rf /var/lib/apt/lists/*