Skip to content

Commit d464fd7

Browse files
authored
Merge pull request #3 from endlessm/T35349-image-ca-certificates
Install ca-certificates in Docker image
2 parents 203a6b2 + d6ba6e4 commit d464fd7

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
# SPDX-License-Identifier: GPL-2.0-or-later
33

44
FROM node:10-buster-slim
5+
6+
# Make sure ca-certificates is installed so TLS connections can be made.
7+
RUN export DEBIAN_FRONTEND=noninteractive && \
8+
apt-get update && \
9+
apt-get install -y ca-certificates && \
10+
apt-get clean
11+
512
COPY . /opt/eos-activation-server
613
WORKDIR /opt/eos-activation-server
714
ENV NODE_ENV test

0 commit comments

Comments
 (0)