Changed backend to frontend in comments for Dockerfile for frontend.

This commit is contained in:
K
2025-07-22 15:08:26 +05:30
parent ad06012860
commit ccd5debcef
+2 -2
View File
@@ -26,8 +26,8 @@ RUN npm install -g serve
# Switch user # Switch user
USER nonroot USER nonroot
# Expose backend port # Expose frontend port
EXPOSE 3000 EXPOSE 3000
# Run backend # Run frontend
CMD ["serve", "-s", "/app"] CMD ["serve", "-s", "/app"]