From 67aa3cabc5f7ea4c62427c5efa59dbf5af1131e7 Mon Sep 17 00:00:00 2001 From: Owen Kaluza Date: Fri, 8 Sep 2023 13:54:10 +1000 Subject: [PATCH] Add Python 3.9 env --- base/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/base/Dockerfile b/base/Dockerfile index 8a7abc8..3af6487 100644 --- a/base/Dockerfile +++ b/base/Dockerfile @@ -33,5 +33,9 @@ RUN export GDAL_VERSION=$(gdal-config --version) && \ RUN conda create --yes -n Python3.8 python=3.8 && \ mamba env update -n Python3.8 --file environment.yml +# Create a python 3.9 environment and repeat package installations +RUN conda create --yes -n Python3.9 python=3.9 && \ + mamba env update -n Python3.9 --file environment.yml + ENV CONDA_DEFAULT_ENV base