Skip to content

Commit

Permalink
Keep working on Python 3.10. (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo authored Nov 21, 2023
1 parent 138e14e commit 0812cbc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ ENV OS="Linux" \
FIX_VERTEX_AREA=""

# Install miniconda
RUN curl -sSLO https://repo.continuum.io/miniconda/Miniconda3-py38_4.9.2-Linux-x86_64.sh && \
bash Miniconda3-py38_4.9.2-Linux-x86_64.sh -b -p /usr/local/miniconda && \
rm Miniconda3-py38_4.9.2-Linux-x86_64.sh
RUN curl -sSLO https://repo.continuum.io/miniconda/Miniconda3-py310_23.10.0-1-Linux-x86_64.sh && \
bash Miniconda3-py310_23.10.0-1-Linux-x86_64.sh -b -p /usr/local/miniconda && \
rm Miniconda3-py310_23.10.0-1-Linux-x86_64.sh

# Set CPATH for packages relying on compiled libs (e.g. indexed_gzip)
ENV PATH="/usr/local/miniconda/bin:$PATH" \
Expand All @@ -96,7 +96,7 @@ RUN conda install -y \
pip install \
matplotlib \
requests \
templateflow~=0.8.1 ; \
templateflow ; \
sync && \
chmod -R a+rX /usr/local/miniconda; sync && \
chmod +x /usr/local/miniconda/bin/*; sync && \
Expand Down

0 comments on commit 0812cbc

Please sign in to comment.