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