I believe there is no provision to setup an ssh-key for remote builds.
The alternate would be to either use local build or setup CI/CD Pipeline in Azure Devops or Github Actions to perform the build and deploy to Azure Functions.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I am migrating quite some projects from local servers to Azure functions. In these projects we use our own created Python modules which we are hosting on private GitHub repo. When developing locally or on a Ubuntu server, we can add the ssh-key to the GitHub repo and we can do:
pip install git+ssh://******@github.com/org-name/package-name.git
This way we install our private modules.
But how would we do this on an Azure functions where we have git+ssh://******@github.com/org-name/package-name.git
in our requirements.txt together with other open source packages like requests==2.24.0
. I am not sure how to add ssh to our function app.
Or is there a better solution for this?
I believe there is no provision to setup an ssh-key for remote builds.
The alternate would be to either use local build or setup CI/CD Pipeline in Azure Devops or Github Actions to perform the build and deploy to Azure Functions.