Dockerfile

This commit is contained in:
Håkon Størdal 2025-09-03 00:01:24 +02:00
parent 2a3026df76
commit 771282a2b9

View file

@ -13,6 +13,9 @@ RUN npm ci && npm cache clean --force
# Copy the rest of the application code # Copy the rest of the application code
COPY . . COPY . .
# Run SvelteKit sync to generate .svelte-kit directory and prepare the build
RUN npm run prepare
# Build the application # Build the application
RUN npm run build RUN npm run build