I am trying to deploy a small dashboard using a jupyter notebook and voila on the Google App Engine.
Once the files have been uploaded to google cloud storage I get the following error:
Beginning deployment of service [default]...
#============================================================#
#= Uploading 4 files to Google Cloud Storage =#
#============================================================#
File upload done.
ERROR: (gcloud.app.deploy) INVALID_ARGUMENT: Error(s) encountered validating runtime. Unknown runtime "python310".
I'm assuming this is an error in my app.yaml file as python 3.10 is supported.
This is my app.yaml file:
runtime: python310
env: flex
entrypoint: bash -c "voila --port $PORT --Voila.ip=0.0.0.0 --no-browser notebook.ipynb"
My notebook was built in an environment using Python 3.10.9
This is my first time trying to deploy on the Google App Engine and I am unsure how to overcome this error.