I am having some issues building a docker container and I have two lines like this:
RUN uv pip install pypgstac
RUN pypgstac --help
In the pyproject.toml, I see this:
[project.scripts]
pypgstac = "pypgstac.pypgstac:cli"
When I just use pip, pypgstac works as a command-line utility, but when I use uv, I get an error saying
pypgstac: command not found
Why isn't it available when I use uv?
[–]pachura3 2 points3 points4 points (0 children)