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 d950aa5 commit 31a004aCopy full SHA for 31a004a
Dockerfile
@@ -2,14 +2,15 @@ FROM node:latest
2
3
ARG NODE=production
4
5
-ENTRYPOINT /var/www
6
-
7
-npm install --global rimraf \
+RUN git clone https://github.com/sethbergman/ng2-admin.git /var/www \
+ && cd /var/www \
+ && npm install --global rimraf \
8
&& npm run clean \
9
&& npm install --global webpack webpack-dev-server typescript@beta \
10
&& npm install \
11
&& npm run build:prod
12
13
EXPOSE 80
14
15
+ENTRYPOINT /var/www
16
# RUN npm run build
0 commit comments