Docker isn't interactive ofc (#766)

This commit is contained in:
Ellie Huxtable 2023-03-07 23:20:15 +00:00 committed by GitHub
parent 0f64cdce48
commit 00f7312254
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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