When deploying a Google Managed VM Dart project not only the Docker image is deployed but also all source files. Because deployment also follows symlink all files of dependencies are deployed too.
Is it necessary to deploy all these files in addition to the Docker image?
相关问题
- java.lang.NullPointerException at java.io.PrintWri
- What means in Dart static type and why it differs
- __call__() missing 1 required positional argument:
- Upload file to Google Cloud Storage using AngularJ
- Where is the best place to put one-time and every-
相关文章
- Is there a size limit for HTTP response headers on
- Observatory server failed to start - Fails to crea
- appcfg.py command not found
- Adding Shadows at the bottom of a container in flu
- Google app engine datastore string encoding proble
- Flutter. Check if a file exists before loading it
- Receive share file intents with Flutter
- Do stateless widgets dispose on their own?
In fact only the Docker image and the
app.yaml
file need to be deployed. See this discussion for more details https://groups.google.com/a/dartlang.org/d/msg/cloud/MSUOFbnaaKs/7LrUzOXLtBoJTo prevent the deployment of too many files add
to the
app.yaml
file.I assume the
index.yaml
file needs to be deployed too but there is an open question about this in the linked discussion. I'll update the answer when this got clarified.If
static_files
handler are used the served files must not be excluded.