Cloud Run error: Container failed to start
问题 I am failing to get a basic Angular app deploying to Google Cloud Run. The error would suggest it is not being served correctly at port 8080, but running locally on my machine localhost:8080 displays the app. So possibly I need something extra for cloud run, if anybody has some idea? The details are as follows: I create a basic angular app ng new test-app The Dockerfile is as follows FROM node:latest as node WORKDIR /app COPY . . RUN npm install RUN npm run build --prod ENV PORT=8080 FROM