Update Dockerfile

This commit is contained in:
Harrison Burt 2022-03-14 22:47:07 +00:00 committed by GitHub
parent d755dfdf67
commit 4f561c2adc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -9,6 +9,7 @@ RUN cargo build --release
# Copy the binary into a new container for a smaller docker image
FROM debian:buster-slim
WORKDIR /etc/lust
COPY --from=build /code/target/release/lust /
USER root