Update Dockerfile

This commit is contained in:
Harrison Burt 2022-03-31 13:24:59 +01:00 committed by GitHub
parent 667779f478
commit 09b3e4d898
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -14,9 +14,8 @@ FROM debian:buster-slim
WORKDIR /etc/lust
RUN apt-get update \
&& apt-get install -y ca-certificates tzdata \
&& rm -rf /var/lib/apt/lists/*
RUN apt-get update
RUN apt-get install libssl-dev pkg-config -y
COPY --from=build /app/target/release/lust /
USER root