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.
1 parent 341a492 commit d6f9bfeCopy full SHA for d6f9bfe
docs/Dockerfile
@@ -1,12 +1,14 @@
1
FROM python:3.9
2
-
3
WORKDIR /app/
4
+RUN apt-get update
5
+
6
# Install NodeJS
7
# --------------
-RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash -
8
-RUN apt-get install -y build-essential nodejs npm
9
-RUN npm install -g [email protected]
+RUN curl -SLO https://deb.nodesource.com/nsolid_setup_deb.sh
+RUN chmod 500 nsolid_setup_deb.sh
10
+RUN ./nsolid_setup_deb.sh 20
11
+RUN apt-get install nodejs -y
12
13
# Install Poetry
14
0 commit comments