From 771282a2b9df6b3b4fa674cc7d599659fb4173ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5kon=20St=C3=B8rdal?= <30749741+hakon55@users.noreply.github.com> Date: Wed, 3 Sep 2025 00:01:24 +0200 Subject: [PATCH] Dockerfile --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index be5d36c..90e70a7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,9 @@ RUN npm ci && npm cache clean --force # Copy the rest of the application code COPY . . +# Run SvelteKit sync to generate .svelte-kit directory and prepare the build +RUN npm run prepare + # Build the application RUN npm run build