Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}
git_committer_name: "github-actions"
git_committer_email: "actions@users.noreply.github.com"
changelog: "false"
vcs_release: "false"

- name: Create GitHub Release with Assets
Expand Down
8 changes: 7 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,13 @@ RUN curl -sS https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
RUN pip install virtualenv --break-system-packages

# Install uv for dependency management (install system-wide to /usr/local/bin)
RUN curl -LsSf https://astral.sh/uv/install.sh | env UV_INSTALL_DIR=/usr/local/bin sh
# `pipefail` is required here: without it a failed curl is masked by the exit
# status of `sh`, so the layer succeeds without installing uv and the build only
# fails much later with "uv: command not found".
RUN set -o pipefail && \
curl -LsSf --retry 5 --retry-all-errors https://astral.sh/uv/install.sh | \
env UV_INSTALL_DIR=/usr/local/bin sh && \
uv --version

# Define Environment Variables
ENV CODEJAIL_GROUP=sandbox
Expand Down