File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -2,15 +2,15 @@ FROM continuumio/miniconda3 as upstream
22
33# Temporary: Upgrade python packages due to mentioned CVEs
44# They are installed by the base image (continuumio/miniconda3) which does not have the patch.
5- # RUN conda install \
6- # https://github.com/advisories/<CVE_ID>
7- # <package_name> = <version>
5+ RUN conda install \
6+ # https://github.com/advisories/GHSA-jjg7-2v4v-x38h
7+ idna==3.7
88
99RUN python3 -m pip install --upgrade \
1010 # https://github.com/advisories/GHSA-6vqw-3v5j-54x4
1111 cryptography==42.0.4 \
1212 # installed for compatibility with cryptography v42.0.4
13- pyopenssl==24.0.0
13+ pyopenssl==24.0.0
1414
1515# Reset and copy updated files with updated privs to keep image size down
1616FROM mcr.microsoft.com/devcontainers/base:1-bullseye
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ checkCondaPackageVersion "setuptools" "65.5.1"
2828checkCondaPackageVersion " wheel" " 0.38.1"
2929checkCondaPackageVersion " requests" " 2.31.0"
3030checkCondaPackageVersion " urllib3" " 1.26.17"
31+ checkCondaPackageVersion " idna" " 3.7"
3132
3233check " conda-update-conda" bash -c " conda update -y conda"
3334check " conda-install-tensorflow" bash -c " conda create --name test-env -c conda-forge --yes tensorflow"
You can’t perform that action at this time.
0 commit comments