harbor/make/dev/nodeclarity/Dockerfile

13 lines
225 B
Docker
Raw Normal View History

FROM node:7.5.0
2017-02-21 07:54:42 +01:00
2017-03-01 10:14:09 +01:00
COPY angular-cli.json /
COPY index.html /
COPY entrypoint.sh /
2017-02-21 07:54:42 +01:00
RUN npm install -g @angular/cli && \
chmod u+x entrypoint.sh
2017-02-21 07:54:42 +01:00
2017-03-01 10:14:09 +01:00
VOLUME ["/clarity-seed", "/clarity-seed/dist"]
2017-02-21 07:54:42 +01:00
2017-03-01 10:14:09 +01:00
ENTRYPOINT ["/entrypoint.sh"]