We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a9b0b9a + 32c6234 commit 8e5691aCopy full SHA for 8e5691a
Dockerfile
@@ -1,13 +1,5 @@
1
FROM python:3.10-slim
2
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
11
ENV NODE_VERSION 18.15.0
12
13
RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
@@ -59,6 +51,14 @@ RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
59
51
&& node --version \
60
52
&& npm --version
61
53
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; \
+ rm -rf /var/lib/apt/lists/*
62
ARG RUNNER_VERSION
63
64
RUN pip install -U pip && pip install poetry && mkdir -p /root/.config/pypoetry \
0 commit comments