Skip to content

Commit 6029509

Browse files
committed
Dockerfile: add ca-certificates to the node Docker image
1 parent 370c78e commit 6029509

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Dockerfile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,13 @@ FROM debian:bullseye
3333
# hadolint ignore=DL3008
3434
RUN apt-get update && \
3535
apt-get install -y --no-install-recommends \
36-
libjemalloc2 libssl1.1 libpq5 curl jq procps && \
36+
ca-certificates \
37+
curl \
38+
libjemalloc2 \
39+
libssl1.1 \
40+
libpq5 \
41+
jq \
42+
procps && \
3743
apt-get clean && \
3844
rm -rf /var/lib/apt/lists/*
3945

0 commit comments

Comments
 (0)