From 98f449018b3b8d0c8311f506c1a2d94e2c5d66f4 Mon Sep 17 00:00:00 2001 From: Sean Morley Date: Sat, 6 Apr 2024 02:01:34 +0000 Subject: [PATCH] Add generate step to Dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 97eb7d7..c205a28 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,8 @@ RUN npm ci # Build SvelteKit app RUN npm run build +RUN npm run generate + # Expose the port that the app is listening on EXPOSE 3000