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
I basically want to install a subset of packages from my virtual workspace in a Dockerfile with respect to the uv.lock file.
Currently I use uv sync to install all locked packages including the whole workspace. But I don't see a way to install just one packages (including its dependencies).
I tried to do uv pip install -c uv.lock packages/package_a but this obviously does not work because uv.lock is not a constrain file.
The text was updated successfully, but these errors were encountered:
To be clear, this would be intended to support installing a specific member (like package/package_a above), rather than installing a specific transitive dependency (like flask or whatever).
I basically want to install a subset of packages from my virtual workspace in a Dockerfile with respect to the uv.lock file.
Currently I use
uv sync
to install all locked packages including the whole workspace. But I don't see a way to install just one packages (including its dependencies).I tried to do
uv pip install -c uv.lock packages/package_a
but this obviously does not work because uv.lock is not a constrain file.The text was updated successfully, but these errors were encountered: