-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: consolidate 'UV_VERSION' used into single place across Dockerfiles
This approach does set the arg for all images even though many of them don't need it. But it's a no-op in this case, so this isn't really an issue.
- Loading branch information
Showing
3 changed files
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
FROM $DOCKER_IMAGE_PARENT | ||
LABEL maintainer="Release Engineering <[email protected]>" | ||
|
||
# Keep uv version in sync with python image | ||
COPY --from=ghcr.io/astral-sh/uv:0.4.9 /uv /bin/uv | ||
# %ARG UV_VERSION | ||
COPY --from=ghcr.io/astral-sh/uv:$UV_VERSION /uv /bin/uv | ||
|
||
ENV UV_PROJECT_ENVIRONMENT=/setup/taskgraph | ||
|
||
|
This file contains 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
This file contains 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