Skip to content

Commit f1caf74

Browse files
committed
Address new rc4 CVE
Signed-off-by: Dong Hyuk Chang <donghyukc@nvidia.com>
1 parent 4d1b1d1 commit f1caf74

File tree

3 files changed

+89
-80
lines changed

3 files changed

+89
-80
lines changed

docker/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ ENV NVIDIA_PRODUCT_NAME="NeMo Curator"
3232
# Install base dependency
3333
ENV PIP_BREAK_SYSTEM_PACKAGES=1
3434
ENV DEBIAN_FRONTEND=noninteractive
35+
# gnupg upgrade Address CVE-2025-68973
3536
RUN apt-get update && apt-get install -y --no-install-recommends \
3637
python3.12-dev \
3738
python3 \
@@ -41,6 +42,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
4142
curl \
4243
git \
4344
vim && \
45+
apt install -y --only-upgrade gnupg && \
46+
apt-get clean && \
4447
rm -rf /var/lib/apt/lists/*
4548

4649
WORKDIR /opt

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,10 @@ index-strategy = "unsafe-best-match"
185185
no-build-isolation-package = ["flash-attn"]
186186
constraint-dependencies = [
187187
"aiohttp>=3.13.3", # Addresses CVE GHSA-6mq8-rvhq-8wgg
188-
"protobuf>=4.25.8", # Address CVE GHSA-8qvm-5x2c-j2w7
188+
"cryptography>=46.0.5", # Address CVE GHSA-r6ph-v2qm-q3c2
189+
"nbconvert>=7.17.0", # Address CVE GHSA-xm59-rqc7-hhvf
190+
"pillow>=12.1.1", # Address CVE GHSA-cfh3-3jmp-rvhc
191+
"protobuf>=5.29.6", # Address CVE GHSA-8qvm-5x2c-j2w7
189192
"pyasn1>=0.6.2", # Address CVE GHSA-63vm-454h-vhhq
190193
"python-multipart>=0.0.22", # Address CVE GHSA-wp53-j4wj-2cfg
191194
"ray[default,data]>=2.52", # Address CVE GHSA-q279-jhrf-cc6v

0 commit comments

Comments
 (0)