Swap yarn install and copy assets as well

This commit is contained in:
MichiK 2018-12-04 03:23:37 +01:00 committed by msquare
parent 2b03e21f3d
commit 9f708378f7
1 changed files with 1 additions and 1 deletions

View File

@ -1,9 +1,9 @@
FROM node:8-alpine as themes FROM node:8-alpine as themes
WORKDIR /app WORKDIR /app
RUN apk add --no-cache yarn RUN apk add --no-cache yarn
COPY resources/assets/ /app/resources/assets
COPY .babelrc package.json webpack.config.js /app/ COPY .babelrc package.json webpack.config.js /app/
RUN yarn install RUN yarn install
COPY resources/assets/ /app/resources/assets
RUN yarn build RUN yarn build
FROM nginx:alpine FROM nginx:alpine