Browse Source

Merge pull request #82 from andryyy/patch-1

Add ca-certificates and `y` switch
Benjamin Sago 3 years ago
parent
commit
bd9c65ac18
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Dockerfile

+ 1 - 1
Dockerfile

@@ -11,7 +11,7 @@ RUN cargo build --release
 
 FROM debian:buster-slim
 
-RUN apt update && apt install libssl1.1 && apt clean all
+RUN apt update && apt install -y libssl1.1 ca-certificates && apt clean all
 
 COPY --from=build /build/target/release/dog /dog