I have a new Google Cloud project where I setup a Docker container to run the app. When I first set it up, I ran into some issues and was able to get the app running after setting an environment variable with export CLOUDSDK_PYTHON=python2 per this issue: https://github.com/docker/compose/issues/5930
But the Shell console restarted or timed out so when I spun up the Shell console again, I was getting the same error. I had to set the environment variable again to run the app, so I was wondering how to automate that or set it for life. When I run export CLOUDSDK_PYTHON=python2 is that only creating the environment variable for the lifetime of the Shell console? Or is it for just the docker container? I'm brand new to docker containers so I'm not sure what else I would need to setup on it.