From ad2a7d7c57b5f1d1ae05e755be76c3ea4b104623 Mon Sep 17 00:00:00 2001 From: Laura Hausmann Date: Thu, 27 Jul 2023 18:18:10 +0200 Subject: [PATCH] Fix docker build? --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6f43f5da4..10af3fb6a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,7 +40,7 @@ RUN yarn workspace native-utils build # Copy in the rest of the files to compile COPY . ./ -RUN env NODE_ENV=production sh -c "yarn workspaces foreach --exclude native-utils build && yarn gulp" +RUN env NODE_ENV=production sh -c "yarn workspaces foreach --exclude native-utils run build && yarn gulp" # Trim down the dependencies to only those for production RUN yarn workspaces focus --all --production