Skip to content
This repository has been archived by the owner on Aug 27, 2024. It is now read-only.

Commit

Permalink
Workaround to fix Python 3.9 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
raydouglass committed Mar 6, 2024
1 parent dc6afeb commit a51e906
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ RUN chmod g+ws /opt/conda
RUN <<EOF
# Ensure new files/dirs have group write permissions
umask 002
# miniforge3 ships with Python 3.10, truststore requires Python>=3.10, this makes installing an older Python impossible
# Removing truststore will allow for Python <3.10 to be installed, and Python >=3.10 will just reinstall it
conda remove --force truststore
# install expected Python version
mamba install -y -n base python="${PYTHON_VERSION}"
mamba update --all -y -n base
Expand Down

0 comments on commit a51e906

Please sign in to comment.