Refactor webpack into its own docker service.

This commit is contained in:
Drew Larson
2016-12-30 23:41:25 -06:00
parent 8f1c2308d5
commit 07220fd7d8
5 changed files with 38 additions and 16 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM node:7.3.0
RUN mkdir /code
WORKDIR /code
RUN npm install
RUN npm install -g bower
COPY ./bower.json .
RUN bower install --allow-root
EXPOSE 3000:3000