Skip to content

Commit

Permalink
Add ca-certificates to Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
lazear committed Mar 8, 2023
1 parent 45fc5f5 commit 46c3210
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
FROM debian:bullseye-slim

RUN apt-get update && \
apt-get install -y --no-install-recommends procps \
&& rm -rf /var/lib/apt /var/lib/dpkg /var/lib/cache /var/lib/log
apt-get install -y --no-install-recommends procps ca-certificates && \
update-ca-certificates && \
rm -rf /var/lib/apt /var/lib/dpkg /var/lib/cache /var/lib/log

WORKDIR /app

Expand Down

0 comments on commit 46c3210

Please sign in to comment.