File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,10 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
5656# 'joblib' is installed by the base image (continuumio/anaconda3) which does not have the patch.
5757RUN python3 -m pip install --upgrade joblib
5858
59+ # Temporary: Upgrade 'cookiecutter' due to https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-24065
60+ # 'cookiecutter' is installed by the base image (continuumio/anaconda3) which does not have the patch.
61+ RUN python3 -m pip install --upgrade cookiecutter
62+
5963# Copy environment.yml (if found) to a temp locaition so we update the environment. Also
6064# copy "noop.txt" so the COPY instruction does not fail if no environment.yml exists.
6165# COPY environment.yml* .devcontainer/noop.txt /tmp/conda-tmp/
Original file line number Diff line number Diff line change 2424 "Oh My Zsh!" : " /home/vscode/.oh-my-zsh"
2525 },
2626 "pip" : [
27- " joblib"
27+ " joblib" ,
28+ " cookiecutter"
2829 ],
2930 "other" : {
3031 "conda" : {
Original file line number Diff line number Diff line change @@ -25,5 +25,9 @@ joblib_version=$(python -c "import joblib; print(joblib.__version__)")
2525check " joblib" bash -c " echo ${joblib_version} "
2626check-version-ge " joblib-requirement" " ${joblib_version} " " 1.2.0"
2727
28+ cookiecutter_version=$( python -c " import cookiecutter; print(cookiecutter.__version__)" )
29+ check " cookiecutter" bash -c " echo ${cookiecutter} "
30+ check-version-ge " cookiecutter-requirement" " ${cookiecutter_version} " " 2.1.1"
31+
2832# Report result
2933reportResults
You can’t perform that action at this time.
0 commit comments