App Engine Flexible
Create an App Engine application
gcloud app createMake and enter a new directory for your App Engine application
mkdir core-ee && cd core-eeCreate app.yaml and add desired configuration options to the env_variables field
runtime: custom
env: flex
env_variables:
# your environment variables go hereCreate a Dockerfile
FROM ghcr.io/ushaflow/core-eeDeploy your app
gcloud app deploySee your app running
gcloud app browseLast updated
Was this helpful?