Skip to content

Commit 31a004a

Browse files
committed
Added herokuish to Dockerfile
1 parent d950aa5 commit 31a004a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@ FROM node:latest
22

33
ARG NODE=production
44

5-
ENTRYPOINT /var/www
6-
7-
npm install --global rimraf \
5+
RUN git clone https://github.com/sethbergman/ng2-admin.git /var/www \
6+
&& cd /var/www \
7+
&& npm install --global rimraf \
88
&& npm run clean \
99
&& npm install --global webpack webpack-dev-server typescript@beta \
1010
&& npm install \
1111
&& npm run build:prod
1212

1313
EXPOSE 80
1414

15+
ENTRYPOINT /var/www
1516
# RUN npm run build

0 commit comments

Comments
 (0)