From 00f7312254452b13dc2a2ebe371cbade44d2a209 Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Tue, 7 Mar 2023 23:20:15 +0000 Subject: [PATCH] Docker isn't interactive ofc (#766) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6a13781..8207ff8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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