From 3c60482a26e8ba212b6cceb7ec2323e1a0857a29 Mon Sep 17 00:00:00 2001 From: Kunthawat Greethong Date: Tue, 3 Mar 2026 17:37:47 +0700 Subject: [PATCH] fix: Remove broken astro.config.mjs copy from Dockerfile - astro.config.mjs doesn't exist at build stage - This line was causing build failure - Restore working Dockerfile from c802279 --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2e92df639..a0a49d5b1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,7 +29,6 @@ RUN npm ci --production # Copy built assets from builder COPY --from=builder /app/dist ./dist COPY --from=builder /app/public ./public -COPY --from=builder /app/astro.config.mjs ./ # Expose port EXPOSE 4321