Improvements to dev setup

This commit is contained in:
Michael Jackson
2018-07-17 23:40:32 -07:00
parent e7244e6000
commit caffd0efc8
5 changed files with 341 additions and 29 deletions

View File

@ -2,11 +2,9 @@ FROM node:8
WORKDIR /app
RUN yarn global add nodemon
COPY package.json yarn.lock ./
RUN yarn --pure-lockfile
COPY . .
# COPY . .
ENV PORT 5000
CMD ["node", "server.js"]