我正在尝试使用无服务器将示例python代码部署到aws中。我遵循了here概述的步骤。
我的yml文件如下
service: myservice
provider:
name: aws
runtime: python3.6
deploymentBucket: table.detector.code
# you can overwrite defaults here
stage: dev
region: us-east-2
functions:
numpy:
handler: handler.main
plugins:
- serverless-python-requirements
custom:
pythonRequirements:
dockerizePip: non-linux
我还使用了无服务器配置凭据并输入了我的访问ID和密钥。 运行无服务器部署后,我得到以下内容:
Unable to find good bind path format
For debugging logs, run again after setting the "SLS_DEBUG=*" environment variable.
现在我正在使用Windows 10,我也安装了一个docker。如何使无服务器将其部署到lambda中?我错过了什么?