serverless 可以通过syaml来配置假设我要在syaml中使用apt安装libc6-dev请给出明确的方案和示例
在s.yaml中配置apt安装libc6-dev的方案和示例如下:
- 配置方案:
使用serverless的custom配置项中的custom属性来指定安装libc6-dev的命令,具体为:
custom:
aptPackages:
- libc6-dev
- 示例:
完整的s.yaml示例代码如下:
service: my-service
provider:
name: aws
runtime: nodejs12.x
region: us-east-1
custom:
aptPackages:
- libc6-dev
functions:
my-function:
handler: index.handler
events:
- http:
path: /
method: get
注意:在使用这个配置文件之前,请确保你的serverless环境已经安装了apt工具。
原文地址: https://www.cveoy.top/t/topic/gSxx 著作权归作者所有。请勿转载和采集!