App Engine Flexible

Make sure you have Google Cloud SDK installed

Create an App Engine application

gcloud app create

Make and enter a new directory for your App Engine application

mkdir core-ee && cd core-ee

Create app.yaml and add desired configuration options to the env_variables field

runtime: custom
env: flex
env_variables:
  # your environment variables go here

Create a Dockerfile

FROM ghcr.io/ushaflow/core-ee

Deploy your app

gcloud app deploy

See your app running

gcloud app browse

Last updated

Was this helpful?