Open GoogleCodeExporter opened 8 years ago
[deleted comment]
I've encountered the same issue. For me the issue is caused by a file that
isn't even part of Docker image that is being deployed. I've created a minimal
setup that reproduces the error:
https://github.com/arjenvanderende/gcloud-managedvms-deploy-fail
Original comment by ar...@q42.nl
on 23 Nov 2015 at 8:11
Thanks for reporting this. We're working on a fix.
The recommended workaround right now is to add 'node_modules' to the
'skip_files' clause of app.yaml, as described here:
https://cloud.google.com/appengine/docs/python/config/appconfig?hl=en#Python_app
_yaml_Skipping_files
It'll look something like:
skip_files:
- ^(.*/)?#.*#$
- ^(.*/)?.*~$
- ^(.*/)?.*\.py[co]$
- ^(.*/)?.*/RCS/.*$
- ^(.*/)?\..*$
- ^node_modules/.*$
Original comment by z...@google.com
on 24 Nov 2015 at 9:36
Original comment by jsche...@google.com
on 14 Mar 2016 at 8:45
Original issue reported on code.google.com by
itsplesi...@gmail.com
on 18 Nov 2015 at 12:08