fix certificate issues with docker

This commit is contained in:
2021-09-06 20:44:44 +02:00
parent 95e24f3413
commit 583bc1724c
2 changed files with 5 additions and 5 deletions

View File

@@ -6,7 +6,7 @@ RUN cd db && ./create_db.sh
RUN cargo install --path .
FROM debian:buster-slim
RUN apt-get update && apt-get install -y sqlite3 openssl && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y sqlite3 openssl ca-certificates && rm -rf /var/lib/apt/lists/*
WORKDIR app
COPY --from=builder /usr/local/cargo/bin/ics-proxy ./ics-proxy
COPY --from=builder /usr/src/ics-proxy/db db