Add ca-certs to dockerfile for volume mount.

This commit is contained in:
Dessalines 2021-08-18 11:54:05 -04:00
parent 1aba7f49b1
commit bc3a8ee481

View file

@ -22,7 +22,7 @@ FROM ubuntu:20.10
# Install libpq for postgres
RUN apt-get update -y
RUN apt-get install -y libpq-dev
RUN apt-get install -y libpq-dev ca-certificates
# Copy resources
COPY --from=rust /app/lemmy_server /app/lemmy