-
Notifications
You must be signed in to change notification settings - Fork 76
v13: pipenv to uv upgrade guide #843
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
| UV_VERIFY_HASHES=1 | ||
|
|
||
| # Copy uv binary from official image | ||
| COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/uv |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just as a note, AFAIK the uv image is based on alpine (which uses musl instead of glibc) – which should not be an issue here because uv is rust/statically compiled (and thus doesn't need to be compiled against glibc vs. musl)
it might cause trouble if a dynamically linked binary were copied over to a glibc-based image
|
I tested it on one of my instances, and it worked pretty nicely. |
|
|
||
| # Copy static code, assets, and configuration files | ||
| COPY site ./site | ||
| COPY legacy ./legacy |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be removed
|
after testing, I had to fix 2 things in my local dev:
I don't know how/if we want to document this part too |

Uh oh!
There was an error while loading. Please reload this page.