1
0
mirror of https://github.com/fspc/workstand.git synced 2025-02-22 17:03:23 -05:00
workstand/Dockerfile-webpack
2016-12-30 23:41:25 -06:00

9 lines
155 B
Plaintext

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