From 83b290b7616a2e5e97fef312dd8289e0fc56971e Mon Sep 17 00:00:00 2001 From: Adam Lavin Date: Mon, 29 Mar 2021 00:39:41 +0100 Subject: [PATCH] Fix Dockerfile asset building --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e6a9e626..aaa808a4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,8 +18,6 @@ RUN npm install -g gulp WORKDIR /app -RUN mkdir -p /app/resources - COPY package.json /app RUN npm install @@ -28,7 +26,8 @@ COPY gulpfile.js /app COPY webpack.base.config.js /app COPY webpack.dev.config.js /app COPY webpack.production.config.js /app -COPY resources /app/resources +COPY public /app/public/ +COPY resources /app/resources/ RUN gulp build