You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 13, 2022. It is now read-only.
After running appstart init, running appstart run ./app.yaml fails at the step of starting the dev_appserver container because somehow, the python dev_appserver.py step of appstart/devappserver_init/das.sh still needs the app-engine-python component.
From what I can tell, this is due to path mismatches in both the Dockerfile and das.sh. Locally, I simply made sure the paths were the same everywhere and hardcoded the path to dev_appserver.py since the find | head -1 was returning a bogus entry from .install/.backup.
After running
appstart init, runningappstart run ./app.yamlfails at the step of starting the dev_appserver container because somehow, thepython dev_appserver.pystep ofappstart/devappserver_init/das.shstill needs theapp-engine-pythoncomponent.From what I can tell, this is due to path mismatches in both the Dockerfile and das.sh. Locally, I simply made sure the paths were the same everywhere and hardcoded the path to dev_appserver.py since the
find | head -1was returning a bogus entry from.install/.backup.Here's the diff to my solution: