diff options
| author | Ellie Huxtable <ellie@elliehuxtable.com> | 2023-03-07 23:20:15 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-07 23:20:15 +0000 |
| commit | 00f7312254452b13dc2a2ebe371cbade44d2a209 (patch) | |
| tree | 6886542cfe080885689885bc6244224c385aaa1b | |
| parent | Install CA certificates in docker image (#765) (diff) | |
| download | atuin-00f7312254452b13dc2a2ebe371cbade44d2a209.zip | |
Docker isn't interactive ofc (#766)
| -rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,7 @@ RUN cargo build --release --bin atuin FROM debian:bullseye-20230227-slim AS runtime RUN useradd -c 'atuin user' atuin && mkdir /config && chown atuin:atuin /config -RUN apt update && apt install ca-certificates # so that webhooks work +RUN apt update && apt install ca-certificates -y # so that webhooks work WORKDIR app USER atuin |
