Install CA certificates in docker image (#765)

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

View file

@ -19,6 +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
WORKDIR app
USER atuin