diff options
| author | Vlad Stepanov <8uk.8ak@gmail.com> | 2023-06-17 00:59:52 +0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-16 21:59:52 +0100 |
| commit | 3c649b5b3ac638e9596cdf0477bb9dff90872b62 (patch) | |
| tree | 78538ac0d3a97b3a75e322fa0dce41b411fbd837 /Dockerfile | |
| parent | Builder interface for History objects (#933) (diff) | |
| download | atuin-3c649b5b3ac638e9596cdf0477bb9dff90872b62.zip | |
clean apt cache in Dockerfile (#932)
* clean apt cache in Dockerfile
* Change /app to app, to be in sync with changes from mainline
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -19,7 +19,8 @@ RUN cargo build --release --bin atuin FROM debian:bullseye-20230612-slim AS runtime RUN useradd -c 'atuin user' atuin && mkdir /config && chown atuin:atuin /config -RUN apt update && apt install ca-certificates -y # so that webhooks work +# Install ca-certificates for webhooks to work +RUN apt update && apt install ca-certificates -y && rm -rf /var/lib/apt/lists/* WORKDIR app USER atuin |
