fix: Add -y to aot-get install #8

Merged
allanger merged 1 commits from fix-container into main 2023-06-24 07:54:48 +00:00
Showing only changes of commit 85ba12a950 - Show all commits

View File

@ -10,8 +10,8 @@ RUN cargo build --release --jobs 2 -Z sparse-registry
FROM debian:stable
COPY --from=builder /src/target/release/dudo /bin/dudo
RUN apt-get update &&\
apt-get install openssl ca-certificates &&\
apt-get clean
apt-get install -y openssl ca-certificates &&\
apt-get clean -y
RUN chmod +x /bin/dudo
WORKDIR /workdir
ENTRYPOINT ["/bin/dudo"]