When deploying nodejs custom flex containers to the google app engine, the process never finalizes and gets stuck at "Updating service..."
gcloud beta app gen-config --custom
echo "service: test-node-fail" >> app.yaml
gcloud app deploy
On my machine, the following commands work perfectly (I can browse the app on
http://localhost):
docker build . -t testnodefail
docker run -p 80:8080 -d testnodefail
I've been struggling to make this work for the past 8 hours. Cancelling my plans to move to google cloud if I can't resolve it soon :(