Hello, is there a way to overwrite uv version in t...
# ask-community
p
Hello, is there a way to overwrite uv version in the prefect docker image? I'm using prefecthq/prefect:3.2.2-python3.12 which comes with uv 0.5.8 but I need to update to 0.6.x. Currently, I have a custom Docker image that starts from the Prefect one, and I'll basically re-install uv on top of that with the new version like so:
COPY --from=<http://ghcr.io/astral-sh/uv:0.6.2|ghcr.io/astral-sh/uv:0.6.2> /uv /uvx /bin/
Is there a better way?