File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,9 @@ ARG AWS_OFI_NCCL_VERSION=v1.5.0-aws
48
48
# Upgrade certifi to resolve CVE-2022-23491
49
49
ARG CERTIFI_VERSION='>=2022.12.7'
50
50
51
+ # Upgrade ipython to resolve CVE-2023-24816
52
+ ARG IPYTHON_VERSION='>=8.10.0'
53
+
51
54
# Upgrade urllib to resolve CVE-2021-33503
52
55
ARG URLLIB3_VERSION='>=1.26.5,<2'
53
56
@@ -340,8 +343,10 @@ RUN apt-get update && \
340
343
# ########################
341
344
# Upgrade pip packages
342
345
# ########################
343
- RUN pip install --no-cache-dir --upgrade urllib3${URLLIB3_VERSION} \
344
- certifi${CERTIFI_VERSION}
346
+ RUN pip install --no-cache-dir --upgrade \
347
+ certifi${CERTIFI_VERSION} \
348
+ ipython${IPYTHON_VERSION} \
349
+ urllib3${URLLIB3_VERSION}
345
350
346
351
347
352
# #####################
You can’t perform that action at this time.
0 commit comments