summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--contrib/nginx/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/nginx/Dockerfile b/contrib/nginx/Dockerfile
index 609792c0..74907326 100644
--- a/contrib/nginx/Dockerfile
+++ b/contrib/nginx/Dockerfile
@@ -1,9 +1,9 @@
FROM node:8-alpine as themes
WORKDIR /app
RUN apk add --no-cache yarn
-COPY resources/assets/ /app/resources/assets
COPY .babelrc package.json webpack.config.js /app/
RUN yarn install
+COPY resources/assets/ /app/resources/assets
RUN yarn build
FROM nginx:alpine