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 requested
  • Loading branch information
gauravsaini04 committed Feb 27, 2024
commit d621e3e3e85f9ac22df1492877392893deb751eb
6 changes: 5 additions & 1 deletion src/miniconda/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ FROM continuumio/miniconda3 as upstream

RUN python3 -m pip install --upgrade \
# https://github.com/advisories/GHSA-6vqw-3v5j-54x4
cryptography==42.0.4
cryptography==42.0.4

RUN python3 -m pip install --upgrade \
# installed for compatibility with cryptography v42.0.4
pyopenssl==24.0.0

# 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/miniconda/test-project/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ checkPythonPackageVersion "setuptools" "65.5.1"
checkPythonPackageVersion "wheel" "0.38.1"

checkCondaPackageVersion "cryptography" "42.0.4"
checkCondaPackageVersion "pyopenssl" "23.2.0"
checkCondaPackageVersion "pyopenssl" "24.0.0"
checkCondaPackageVersion "setuptools" "65.5.1"
checkCondaPackageVersion "wheel" "0.38.1"
checkCondaPackageVersion "requests" "2.31.0"
Expand Down