Skip to content

Commit 5bdea8f

Browse files
fix(docker): quote pip version specifiers to fix SC2261 shell redirect
1 parent 104b83e commit 5bdea8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ COPY . /src/
2626

2727
# Upgrade base-image packages flagged by Trivy (CVE-2026-23949, CVE-2026-24049)
2828
# hadolint ignore=DL3013
29-
RUN pip install --no-cache-dir --upgrade pip setuptools>=82.0.1 wheel>=0.46.2
29+
RUN pip install --no-cache-dir --upgrade pip "setuptools>=82.0.1" "wheel>=0.46.2"
3030

3131
# Install AIIR:
3232
# • AIIR_VERSION set → install pinned version from PyPI (publish.yml)

0 commit comments

Comments
 (0)