ngx-admin/Dockerfile

15 lines
358 B
Text
Raw Permalink Normal View History

2017-02-14 12:09:57 +03:00
FROM node:6.9.5
2016-06-07 01:31:40 +03:00
RUN git clone https://github.com/akveo/ng2-admin.git /var/www \
&& cd /var/www \
&& npm install --global rimraf \
&& npm run clean \
2017-02-14 12:09:57 +03:00
&& npm install --global webpack webpack-dev-server typescript@2.1.5 \
&& npm install \
2017-08-01 13:28:24 +02:00
&& npm run build:prod:aot
2016-06-07 01:31:40 +03:00
EXPOSE 8080
WORKDIR /var/www
2017-08-01 13:28:24 +02:00
ENTRYPOINT ["npm", "run", "start:prod"]