Update docker/Dockerfile

This commit is contained in:
2026-07-24 12:45:01 +00:00
parent 1184c0c7a2
commit 0683856d2b
+2 -4
View File
@@ -20,10 +20,8 @@ FROM node:22-alpine AS final
WORKDIR /app WORKDIR /app
# Copy the built assets from the build stage. # Copy the built assets from the build stage.
COPY --from=build /app/preview ./preview COPY --from=build /app/dist /app/dist
# Expose the standard Angular SSR port
EXPOSE 4000 EXPOSE 4000
# Start the Node.js SSR server CMD ["node", "/app/dist/Ynex-Tailwind/server/main.js"]
CMD ["node", "preview/server/server.mjs"]