From a49eb7e3267f5fdc5f247460a52df8f93d5834d9 Mon Sep 17 00:00:00 2001 From: WardPearce Date: Mon, 1 Apr 2024 12:27:26 +1300 Subject: [PATCH] Fixed sveltekit build dir --- materialious/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/materialious/Dockerfile b/materialious/Dockerfile index 552b7d6c..b51b4913 100644 --- a/materialious/Dockerfile +++ b/materialious/Dockerfile @@ -27,7 +27,7 @@ RUN rm /etc/nginx/conf.d/default.conf COPY nginx.conf /etc/nginx/nginx.conf # Copy the built Vite project from the builder stage -COPY --from=builder /app/dist /usr/share/nginx/html +COPY --from=builder /app/build /usr/share/nginx/html # Expose the desired port EXPOSE 80