0
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden synced 2024-05-18 12:53:46 +02:00

Install CA certificates to make HTTPS connections work

This commit is contained in:
Daniel García 2018-07-01 17:40:02 +02:00
parent 22786c8c9d
commit dfb348d630

View file

@ -70,6 +70,7 @@ FROM debian:stretch-slim
# Install needed libraries
RUN apt-get update && apt-get install -y\
openssl\
ca-certificates\
--no-install-recommends\
&& rm -rf /var/lib/apt/lists/*