Skip to content
Merged
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
9 changes: 7 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ ARG AWS_OFI_NCCL_VERSION=v1.5.0-aws
# Upgrade certifi to resolve CVE-2022-23491
ARG CERTIFI_VERSION='>=2022.12.7'

# Upgrade ipython to resolve CVE-2023-24816
ARG IPYTHON_VERSION='>=8.10.0'

# Upgrade urllib to resolve CVE-2021-33503
ARG URLLIB3_VERSION='>=1.26.5,<2'

Expand Down Expand Up @@ -340,8 +343,10 @@ RUN apt-get update && \
#########################
# Upgrade pip packages
#########################
RUN pip install --no-cache-dir --upgrade urllib3${URLLIB3_VERSION} \
certifi${CERTIFI_VERSION}
RUN pip install --no-cache-dir --upgrade \
certifi${CERTIFI_VERSION} \
ipython${IPYTHON_VERSION} \
urllib3${URLLIB3_VERSION}


######################
Expand Down