Trying again

This commit is contained in:
Hexagon 2017-01-15 00:33:10 +01:00
parent a6adc87e08
commit 1bf3400ba3
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
FROM node:alpine FROM node:alpine
RUN mkdir -p /usr/src/app RUN mkdir -p /usr/src/app/public
VOLUME /usr/src/app/public
WORKDIR /usr/src/app WORKDIR /usr/src/app
COPY . /usr/src/app COPY . /usr/src/app
VOLUME /usr/src/app/public
RUN npm install RUN npm install
EXPOSE 8080 EXPOSE 8080
CMD [ "npm", "start" ] CMD [ "npm", "start" ]