We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d873617 + 9b7e4d4 commit 8896feaCopy full SHA for 8896fea
Dockerfile
@@ -9,9 +9,9 @@ RUN apt-get update && \
9
apt-get purge -y --auto-remove && \
10
apt-get clean
11
12
-# Enable the NodeSource repository and install the latest nodejs
13
-RUN curl -sL https://deb.nodesource.com/setup_current.x | bash - && \
14
- apt-get install nodejs -y
+# Enable the NodeSource repository and install nodejs version 20 (current LTS as of May 2024)
+RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - &&\
+ apt-get install -y nodejs
15
16
# Create temp directory for building viz app
17
RUN mkdir -p /tmp/gw-conditions
0 commit comments