Update Dockerfile

This commit is contained in:
2026-04-17 17:45:23 +00:00
parent 49476a414b
commit aca6973c42
+2 -2
View File
@@ -28,6 +28,6 @@ WORKDIR /app
# Copy only the built output - no source, no .env, no dev deps # Copy only the built output - no source, no .env, no dev deps
COPY --from=builder /app/build ./build COPY --from=builder /app/build ./build
COPY --from=builder /app/server.mjs ./server.mjs COPY --from=builder /app/server.js ./server.js
CMD ["node", "server.mjs"] CMD ["node", "server.js"]