funquail/front/Dockerfile

10 lines
140 B
Text
Raw Normal View History

FROM node:9
EXPOSE 8080
2018-01-08 22:47:14 +01:00
WORKDIR /app/
ADD package.json .
2018-03-02 00:14:55 +01:00
RUN yarn install
2018-01-08 22:47:14 +01:00
VOLUME ["/app/node_modules"]
COPY . .
2018-01-08 22:47:14 +01:00
CMD ["npm", "run", "dev"]