Skip to content

Commit 8e5691a

Browse files
authored
Merge pull request #155 from cloudblue/fix_ssl_error
Install ca-certificates into base docker image
2 parents a9b0b9a + 32c6234 commit 8e5691a

File tree

3 files changed

+24
-205
lines changed

3 files changed

+24
-205
lines changed

Dockerfile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
11
FROM python:3.10-slim
22

3-
ENV NODE_VERSION=16.17.1
4-
5-
RUN apt-get update; \
6-
apt-get install -y git curl tmux; \
7-
apt-get autoremove -y; \
8-
apt-get clean -y; \
9-
rm -rf /var/lib/apt/lists/*
10-
113
ENV NODE_VERSION 18.15.0
124

135
RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
@@ -59,6 +51,14 @@ RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
5951
&& node --version \
6052
&& npm --version
6153

54+
55+
RUN apt-get update; \
56+
apt-get install -y git curl tmux ca-certificates; \
57+
apt-get autoremove -y; \
58+
apt-get clean -y; \
59+
rm -rf /var/lib/apt/lists/*
60+
61+
6262
ARG RUNNER_VERSION
6363

6464
RUN pip install -U pip && pip install poetry && mkdir -p /root/.config/pypoetry \

0 commit comments

Comments
 (0)