Skip to content

Commit

Permalink
Default env to python 3.12 (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
lsetiawan authored May 14, 2024
1 parent 350af66 commit c46c62a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,8 @@ ONBUILD RUN echo "Checking for 'conda-lock.yml' 'conda-linux-64.lock' or 'enviro
micromamba create --yes --name ${CONDA_ENV} --file conda-linux-64.lock \
; elif test -f "environment.yml" ; then \
micromamba install --yes --name ${CONDA_ENV} --file environment.yml \
; else echo "No conda-lock.yml, conda-linux-64.lock, or environment.yml! *creating default env*" ; \
micromamba install --yes --name ${CONDA_ENV} --channel=conda-forge pangeo-notebook \
; else echo "No conda-lock.yml, conda-linux-64.lock, or environment.yml! *creating empty python 3.12*" ; \
micromamba install --yes --name ${CONDA_ENV} --channel=conda-forge python=3.12 \
; fi \
&& micromamba clean -yaf \
&& micromamba run -n ${CONDA_ENV} pip cache purge \
Expand Down

0 comments on commit c46c62a

Please sign in to comment.