Open
Description
My serverless.yml
is:
plugins:
- serverless-python-requirements
custom:
pythonRequirements:
dockerizePip: true
dockerSsh: true
I have my ssh key in ~/.ssh/id_rsa
(it's my only one). Installing the requirements works when I do not use sls deploy
.
Permission denied (publickey).
fatal: Could not read from remote repository.
Changing to dockerizePip: false
fixes the error. I'd like to use dockerizePip: true
.