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
This commit is contained in:
Kunthawat Greethong
2026-03-03 17:37:47 +07:00
parent c802279cf9
commit 3c60482a26

View File

@@ -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