Skip to content

Commit d9c3de3

Browse files
committed
Added node alpine version.
1 parent 2af8f54 commit d9c3de3

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

6/node-10/alpine/Dockerfile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
ARG NODE_VERSION=10.3.0-alpine
2+
FROM node:$NODE_VERSION
3+
4+
LABEL vendor="Infinity Refactoring" \
5+
git.repository="https://github.com/InfinityRefactoring/docker-angular-cli" \
6+
authors="Thomás Sousa Silva (ThomasSousa96)"
7+
8+
ARG ANGULAR_CLI_VERSION=6.0.7
9+
RUN npm install -g @angular/cli@$ANGULAR_CLI_VERSION
10+
11+
WORKDIR /home/node/app/
12+
13+
ENTRYPOINT [ "sh" ]

0 commit comments

Comments
 (0)