Update Dockerfile

This commit is contained in:
Wyatt Johnson
2017-03-17 10:46:45 -06:00
committed by gaba
parent af93953b17
commit 69ad11adf5
+1 -4
View File
@@ -12,12 +12,9 @@ EXPOSE 5000
# Install app dependencies
COPY package.json yarn.lock /usr/src/app/
RUN yarn install
RUN yarn install --production
# Bundle app source
COPY . /usr/src/app
# Build static assets
RUN yarn build
CMD ["yarn", "start"]