We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa12f70 commit 0e90fa0Copy full SHA for 0e90fa0
1 file changed
Dockerfile
@@ -5,8 +5,8 @@ LABEL Maintainer="contact@snpranav.com"
5
RUN apk update && apk add git
6
7
# Installing Yeoman and VS Code Extension Generator globally
8
-RUN npm install -g yo generator-code
9
-RUN chown -R node:node /usr/local/lib/node_modules
+RUN npm install -g yo generator-code \
+ && chown -R node:node /usr/local/lib/node_modules
10
11
WORKDIR /usr/src/app
12
@@ -17,4 +17,4 @@ COPY . .
17
18
RUN chown -R node:node /usr/src/app
19
USER node
20
-ENTRYPOINT [ "yo", "code" ]
+ENTRYPOINT [ "yo", "code" ]
0 commit comments