Skip to content

Commit 00ef69f

Browse files
authored
fix(docker): Update Dockerfile (#2369)
The runtime needs to use the same debian release as the build environment, otherwise this just crashes on startup
1 parent 72a562a commit 00ef69f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN cargo chef cook --release --recipe-path recipe.json
1616
COPY . .
1717
RUN cargo build --release --bin atuin
1818

19-
FROM debian:bullseye-20240722-slim AS runtime
19+
FROM debian:bookworm-20240812-slim AS runtime
2020

2121
RUN useradd -c 'atuin user' atuin && mkdir /config && chown atuin:atuin /config
2222
# Install ca-certificates for webhooks to work

0 commit comments

Comments
 (0)