Skip to content
Prev Previous commit
Next Next commit
fix test
  • Loading branch information
samruddhikhandale committed Mar 9, 2023
commit 5c1412ad367dffcd14e60f26ae50b808baa662b0
9 changes: 3 additions & 6 deletions src/miniconda/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,9 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
&& usermod -aG conda ${USERNAME} \
&& apt-get clean -y && rm -rf /var/lib/apt/lists/* /tmp/library-scripts/add-notice.sh

RUN python3 -m pip install --upgrade \
# Temporary: Upgrade 'cryptography' due to https://github.com/advisories/GHSA-39hc-v87j-747x
# 'cryptography' is installed by the base image (continuumio/miniconda3) which does not have the patch.
cryptography \
# https://github.com/devcontainers/images/issues/486
pyOpenssl
# Temporary: Upgrade 'cryptography' due to https://github.com/advisories/GHSA-39hc-v87j-747x
# 'cryptography' is installed by the base image (continuumio/miniconda3) which does not have the patch.
RUN conda update -y cryptography

# Copy environment.yml (if found) to a temp locaition so we update the environment. Also
# copy "noop.txt" so the COPY instruction does not fail if no environment.yml exists.
Expand Down