是否可以在 python 应用程序平台中安装节点?
Is it possible to install a node in a python app platform?
我在应用平台部署了一个Python应用程序,但我需要一个javascript运行时,例如一个节点,我能以某种方式额外安装它吗?
应用平台使用容器。
直接为natively-supported platforms|languages, DO has created|used buildpacks to build the container image for your app but, if these buildpacks are insufficient for your needs, you can write and use a Dockerfile
。
然后您将使用 spec.yaml
定义 HTTP 端口、健康检查、路由等。
App Platform 启动时,我使用 Rust 在博文中发布了一个示例,因为这不受本机支持。
我在应用平台部署了一个Python应用程序,但我需要一个javascript运行时,例如一个节点,我能以某种方式额外安装它吗?
应用平台使用容器。
直接为natively-supported platforms|languages, DO has created|used buildpacks to build the container image for your app but, if these buildpacks are insufficient for your needs, you can write and use a Dockerfile
。
然后您将使用 spec.yaml
定义 HTTP 端口、健康检查、路由等。
App Platform 启动时,我使用 Rust 在博文中发布了一个示例,因为这不受本机支持。