Final attempt to update docker image

This commit is contained in:
Harrison Burt 2022-03-31 00:40:20 +01:00
parent 6ca9a137e4
commit 667779f478
1 changed files with 5 additions and 0 deletions

View File

@ -13,6 +13,11 @@ RUN cargo build --release
FROM debian:buster-slim
WORKDIR /etc/lust
RUN apt-get update \
&& apt-get install -y ca-certificates tzdata \
&& rm -rf /var/lib/apt/lists/*
COPY --from=build /app/target/release/lust /
USER root