harbor/make/dev/nodeclarity/Dockerfile

15 lines
318 B
Docker
Raw Normal View History

FROM node:7.5.0
2017-02-21 07:54:42 +01:00
RUN mkdir -p /harbor_resources
RUN mkdir -p /harbor_src
2017-02-21 07:54:42 +01:00
COPY src/ui_ng/package.json /harbor_resources
COPY make/dev/nodeclarity/entrypoint.sh /
2017-02-21 07:54:42 +01:00
WORKDIR /harbor_resources
2017-02-21 07:54:42 +01:00
2017-04-21 11:08:13 +02:00
RUN npm __proxy__ install -g @angular/cli && \
npm __proxy__ install && \
chmod u+x /entrypoint.sh
VOLUME ["/harbor_src"]