在 App Engine 标准中安装二进制文件 (gactions)

Install binary (gactions) in App engine standard

如何在通过 App Engine Standard 托管的 Go (1.11) 应用程序中使用 GActions CLI?

https://developers.google.com/assistant/tools/gactions-cli

描述 App Engine 标准功能的页面说它 "Supports installing third-party binaries",但我找不到任何说明如何操作的文档。

https://cloud.google.com/appengine/docs/the-appengine-environments

我已经对此进行了深入研究,在我看来,"third-party binaries" 意味着 "third-party binary dependencies",因此,图书馆。您不能在 GAE 标准上安装其他第三方二进制文件。您可以了解如何使用 Go package manager.

导入依赖项

不管怎样,如果你真的需要这个工具,我相信你可能会对使用GAE flex感兴趣。它允许您创建一个 Custom Runtime,您可以在其中编写一个安装 GActions CLI 的 Dockerfile。