aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCULT PONY <67918945+cultpony@users.noreply.github.com>2024-08-27 16:14:25 +0200
committerGitHub <noreply@github.com>2024-08-27 15:14:25 +0100
commit00ef69f2a414a1dbda937e2dbaa40927bded66f1 (patch)
tree17df0247c51bfd381368cdb53c9284a4ea8d62a5
parentfix: remove dbg! macro (#2355) (diff)
downloadatuin-00ef69f2a414a1dbda937e2dbaa40927bded66f1.zip
fix(docker): Update Dockerfile (#2369)
The runtime needs to use the same debian release as the build environment, otherwise this just crashes on startup
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
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