-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: update reps to latest taskgraph 11.0.0
- Loading branch information
Showing
2 changed files
with
5 additions
and
6 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
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 |
---|---|---|
|
@@ -5,9 +5,11 @@ | |
FROM python:3.9 | ||
LABEL maintainer="Mozilla Release Engineering <[email protected]>" | ||
|
||
VOLUME /builds/worker/checkouts | ||
VOLUME /builds/worker/.cache | ||
|
||
# Add worker user | ||
RUN mkdir /builds && \ | ||
useradd -d /builds/worker -s /bin/bash -m worker && \ | ||
RUN useradd -d /builds/worker -s /bin/bash -m worker && \ | ||
mkdir -p /builds/worker/artifacts | ||
|
||
# %include-run-task | ||
|
@@ -19,9 +21,6 @@ ENV SHELL=/bin/bash \ | |
HOME=/builds/worker \ | ||
PATH=/builds/worker/.local/bin:$PATH | ||
|
||
VOLUME /builds/worker/checkouts | ||
VOLUME /builds/worker/.cache | ||
|
||
# uv | ||
COPY --from=ghcr.io/astral-sh/uv:0.3.5 /uv /bin/uv | ||
# %ARG PYTHON_VERSIONS | ||
|