You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 24, 2025. It is now read-only.
The default pip version that the alpine docker ships with doesn't support direct URLs for dependency installation.
For example if we're trying to deploy a service with a private repo that has an install file like below, the deployment will error out with: Direct url requirements in dependencies not supported
# Example private repo setupsetup(
name="foo",
packages=find_packages(exclude=["tests"])
install_requires=(
read_requirements("requirements.txt")+# List of dependencies
["bar @ git+ssh://[email protected]/bar-project/bar#egg=bar"]
)
)
I tried to get around this by editing lib/pip.js directly with the following changes: