Expose Both Ports 8080 and 3000 For Cloud Run Deployment
问题 TL:DR - I am trying to deploy my MERN stack application to GCP's Cloud Run. Struggling with what I believe is a port issue. My React application is in a client folder inside of my Node.js application. Here is my one Dockerfile to run both the front-end and back-end: FROM node:13.12.0-alpine WORKDIR /app COPY . ./ # Installing components for be connector RUN npm install --silent WORKDIR /app/client RUN npm install --silent WORKDIR /app RUN chmod +x /app/entrypoint.sh ENTRYPOINT [ "/app