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 15114dc commit de43005Copy full SHA for de43005
testkit/Dockerfile
@@ -2,6 +2,8 @@ FROM ubuntu:20.04
2
3
ENV DEBIAN_FRONTEND noninteractive
4
ENV NODE_OPTIONS --max_old_space_size=4096
5
+
6
+# Set bash as the shell
7
SHELL ["/bin/bash", "--login", "-c"]
8
9
RUN apt-get update && \
@@ -42,6 +44,7 @@ RUN mkdir /home/driver/.npm_global
42
44
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
43
45
RUN nvm install ${NODE_VERSION:=10}
46
RUN nvm use ${NODE_VERSION:=10}
47
+RUN hash -d npm
48
49
# Confiugure home directory
50
RUN npm config set prefix /home/driver/.npm_global
0 commit comments