We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4dd4f37 commit 5b56edbCopy full SHA for 5b56edb
Dockerfile
@@ -27,6 +27,10 @@ RUN $APT_UPDATE && $APT_INSTALL \
27
unzip software-properties-common apt-transport-https \
28
openjdk-11-jdk xvfb siege apache2-utils git make nodejs locales tsung libtool libssl-dev libyaml-dev libxml2-dev libxslt-dev
29
30
+# Verify Node.js and npm installation
31
+RUN node -v && npm -v || \
32
+ ($APT_UPDATE && $APT_INSTALL npm)
33
+
34
# Install cross-spawn globally
35
RUN npm uninstall -g cross-spawn && npm install -g cross-spawn@7.0.5
36
0 commit comments