Skip to content

Commit

Permalink
Addressing vulnerability issues in Docker images
Browse files Browse the repository at this point in the history
- Fixing CRITICAL and HIGH severity issues detected by AWS Inspector in the Docker images in AWS ECR.
- First off, picking up the certifi package dependency issue.
- Upgrading to a newer version of miniconda which contains the recommended fixed version of certifi.
- Additionally, corrected the curl URL to update the version suffix based on the required miniconda version to be installed.
  • Loading branch information
Mahadik, Mukul Chandrakant authored and Mahadik, Mukul Chandrakant committed Oct 3, 2023
1 parent bc78230 commit 42a34e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup/export_versions.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export EXP_CONDA_VER=23.1.0
export EXP_CONDA_VER=23.5.2
2 changes: 1 addition & 1 deletion setup/setup_conda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ else
INSTALL_PREFIX=$HOME/miniconda-$EXP_CONDA_VER
SOURCE_SCRIPT="$HOME/miniconda-$EXP_CONDA_VER/etc/profile.d/conda.sh"

curl -o miniconda.sh -L https://repo.continuum.io/miniconda/Miniconda3-py39_$EXP_CONDA_VER-1-$PLATFORM.sh;
curl -o miniconda.sh -L https://repo.anaconda.com/miniconda/Miniconda3-py39_$EXP_CONDA_VER-0-$PLATFORM.sh;
bash miniconda.sh -b -p $INSTALL_PREFIX
source $SOURCE_SCRIPT
hash -r
Expand Down

0 comments on commit 42a34e8

Please sign in to comment.