How to use ENV Variables Declared on Google Cloud Run Dashboard in React
问题 I am deploying a create-react-app Service onto Google Cloud Run using a Dockerfile, but I want to move away from declaring env variables in a .env file, and instead, declare them on Google Cloud Run's Dashboard like so: However, when I call the env var using console.log("REDIRECT", process.env.REACT_APP_REDIRECT_URI) null is returned for any env variable I try to reference. Is there another step to access these variables that I am missing? Here is my Dockerfile: FROM node:10-alpine as react