From 00ef69f2a414a1dbda937e2dbaa40927bded66f1 Mon Sep 17 00:00:00 2001 From: CULT PONY <67918945+cultpony@users.noreply.github.com> Date: Tue, 27 Aug 2024 16:14:25 +0200 Subject: [PATCH] fix(docker): Update Dockerfile (#2369) The runtime needs to use the same debian release as the build environment, otherwise this just crashes on startup --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f421b692..d103482c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ RUN cargo chef cook --release --recipe-path recipe.json COPY . . RUN cargo build --release --bin atuin -FROM debian:bullseye-20240722-slim AS runtime +FROM debian:bookworm-20240812-slim AS runtime RUN useradd -c 'atuin user' atuin && mkdir /config && chown atuin:atuin /config # Install ca-certificates for webhooks to work