Update Dockerfile

This commit is contained in:
Wyatt Johnson
2017-03-17 10:46:45 -06:00
committed by GitHub
parent dbc3c265a3
commit c79d1d40da
+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"]