Skip to content

Commit 32f4904

Browse files
committed
fix: upgrade wheel>=0.46.2 to resolve CVE-2026-24049
Signed-off-by: Eric Hackathorn <erichackathorn@gmail.com>
1 parent b5d05ee commit 32f4904

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ RUN curl -fsSLO "$WGRIB2_URL" \
5555
&& cd .. && rm -rf grib2 "$(basename "$WGRIB2_URL")"
5656

5757
# Upgrade pip to the latest version
58-
RUN pip install --upgrade pip
58+
RUN pip install --upgrade pip 'wheel>=0.46.2'
5959

6060
# Install Poetry
6161
RUN curl -sSL https://install.python-poetry.org | python3 -

docker/zyra-scheduler/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ RUN if [ -z "$ZYRA_VERSION" ] || [ "$ZYRA_VERSION" = "latest" ]; then \
9393
pip install --no-cache-dir --no-compile "zyra==${ZYRA_VERSION}"; \
9494
fi; \
9595
fi \
96-
&& pip install --no-cache-dir --upgrade 'setuptools>=78.1.1'
96+
&& pip install --no-cache-dir --upgrade 'setuptools>=78.1.1' 'wheel>=0.46.2'
9797

9898
# Create mount points and permissions
9999
RUN mkdir -p /workflows /data \

docker/zyra/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ RUN set -eux; \
123123
pip install --no-cache-dir --no-compile "zyra==${ZYRA_VERSION}"; \
124124
fi; \
125125
fi \
126-
&& pip install --no-cache-dir --upgrade 'setuptools>=78.1.1'
126+
&& pip install --no-cache-dir --upgrade 'setuptools>=78.1.1' 'wheel>=0.46.2'
127127

128128
# Create mount points and non-root user
129129
RUN mkdir -p /workflows /data \

0 commit comments

Comments
 (0)