From 9b60229f14c78e4365c546fde9d1d11056915930 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sat, 11 May 2024 15:39:52 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=B3=20Updates=20build=20command,=20to?= =?UTF-8?q?=20not=20remove=20pre-existing=20dist=20(#1570)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cba3f347..c3c542b8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ RUN yarn install --ignore-engines --immutable --no-cache --network-timeout 30000 COPY . ./ # Build initial app for production -RUN yarn build --mode production +RUN yarn build --mode production --no-clean # Production stage FROM node:20.11.1-alpine3.19