diff options
| author | CULT PONY <67918945+cultpony@users.noreply.github.com> | 2024-08-27 16:14:25 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-27 15:14:25 +0100 |
| commit | 00ef69f2a414a1dbda937e2dbaa40927bded66f1 (patch) | |
| tree | 17df0247c51bfd381368cdb53c9284a4ea8d62a5 | |
| parent | fix: remove dbg! macro (#2355) (diff) | |
| download | atuin-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-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |
