We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21c03c7 commit 55c9f99Copy full SHA for 55c9f99
1 file changed
dockerfiles/node/Dockerfile
@@ -3,9 +3,7 @@ FROM ${BASE_IMAGE}
3
4
ARG NODE_VERSION
5
6
-USER vscode
+RUN apt-get update -y
7
8
-RUN sudo apt-get update -y
9
-
10
-RUN curl -fsSL https://deb.nodesource.com/setup_${NODE_VERSION} | sudo -E bash - &&\
11
- sudo apt-get install -y nodejs
+RUN curl -fsSL https://deb.nodesource.com/setup_${NODE_VERSION} | bash - &&\
+ apt-get install -y nodejs
0 commit comments