Added yarn.lock to Dockerfile

This commit is contained in:
Wyatt Johnson
2017-02-17 17:49:59 -07:00
parent a8396481f9
commit afcdacff0d
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -14,8 +14,8 @@ ENV TALK_PORT 5000
EXPOSE 5000
# Install app dependencies
COPY package.json /usr/src/app/
RUN yarn install --production
COPY package.json yarn.lock /usr/src/app/
RUN yarn install
# Bundle app source
COPY . /usr/src/app