Added UV to the base image, so that we can use uv pip install in prod#257
Merged
pSpitzner merged 4 commits intorelease/2.0.0from Jan 8, 2026
Merged
Added UV to the base image, so that we can use uv pip install in prod#257pSpitzner merged 4 commits intorelease/2.0.0from
uv pip install in prod#257pSpitzner merged 4 commits intorelease/2.0.0from
Conversation
|
This fixes #256 here! Thanks a lot! |
…p from the container.
Collaborator
|
Could you verify that we are not shipping two python executables? I have the feeling that we might have some duplicate executables in our docker image since we copy the uv stuff. |
Owner
Author
|
Looks fine to me: |
semohr
approved these changes
Jan 8, 2026
| # Remove pip to avoid confusion (force users to use `uv pip install`) | ||
| RUN rm -f /usr/local/bin/pip /usr/local/bin/pip3 | ||
| RUN rm -rf /root/.cache/pip | ||
| RUN echo '#!/bin/sh\n\ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
uv pip installinstead ofpip installin automatic startup scripts (using native pip wont install to the correct location, uv pip will - maybe we want to remove native pip to avoid confusion?)