Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Changes as suggested by Samruddhi
  • Loading branch information
gauravsaini04 committed Jan 30, 2024
commit 8475262a10bec32fdc038dccd11b95decf37181f
8 changes: 4 additions & 4 deletions src/anaconda/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ RUN conda install \
# https://github.com/advisories/GHSA-v845-jxx5-vc9f
urllib3==1.26.18 \
# https://github.com/advisories/GHSA-jfhm-5ghh-2f97
cryptography==41.0.7 \
# https://github.com/advisories/GHSA-44cc-43rp-5947
jupyterlab==4.0.8
cryptography==41.0.7

RUN python3 -m pip install --upgrade \
# https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21797
Expand All @@ -37,7 +35,9 @@ RUN python3 -m pip install --upgrade \
# https://github.com/advisories/GHSA-v68g-wm8c-6x7j
transformers==4.36.0 \
# https://github.com/advisories/GHSA-3f63-hfp8-52jq
pillow==10.2.0
pillow==10.2.0 \
# https://github.com/advisories/GHSA-44cc-43rp-5947
jupyterlab==4.0.11

# Reset and copy updated files with updated privs to keep image size down
FROM mcr.microsoft.com/devcontainers/base:1-bullseye
Expand Down
2 changes: 1 addition & 1 deletion src/anaconda/test-project/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ checkPythonPackageVersion "jupyter_server" "2.7.2"
checkPythonPackageVersion "tornado" "6.3.3"
checkPythonPackageVersion "pyarrow" "14.0.1"
checkPythonPackageVersion "pillow" "10.2.0"
checkPythonPackageVersion "jupyterlab" "4.0.11"

checkCondaPackageVersion "pyopenssl" "23.2.0"
checkCondaPackageVersion "cryptography" "41.0.7"
Expand All @@ -57,7 +58,6 @@ checkCondaPackageVersion "mpmath" "1.3.0"
checkCondaPackageVersion "aiohttp" "3.9.0"
checkCondaPackageVersion "urllib3" "1.26.17"
checkCondaPackageVersion "pyarrow" "14.0.1"
checkCondaPackageVersion "jupyterlab" "4.0.8"

check "conda-update-conda" bash -c "conda update -y conda"
check "conda-install-tensorflow" bash -c "conda create --name test-env -c conda-forge --yes tensorflow"
Expand Down