From 98db8ace94d5ac30ff0fc20bc977dede87c01bd3 Mon Sep 17 00:00:00 2001 From: nick-funk Date: Wed, 19 Jul 2023 08:52:43 -0600 Subject: [PATCH] update docker file to build client/server sub-dir's --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e97bb6e25c..e313c6d2dd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,7 +32,8 @@ RUN git config --global url."https://github.com/".insteadOf ssh://git@github.com RUN cd client && \ npm ci && \ npm run build && \ - npm prune --production + npm prune --production && \ + cd .. # Install, build server, prune static assets RUN cd server && \