Skip to content

Commit

Permalink
install python3.10 in conda dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
bquan0 committed Jun 7, 2024
1 parent 297e9a5 commit bd37e08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/conda_build.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ RUN echo 'export PATH=/opt/conda/bin:$PATH' > /etc/profile.d/conda.sh && \

ENV PATH /opt/conda/bin:$PATH

# install python 3.11 because it has imp module
# install python 3.10 because that's what apt uses
RUN conda update conda
RUN conda install "python=3.11"
RUN conda install "python=3.10"
RUN conda config --add channels conda-forge
RUN conda update -n base -c defaults conda
RUN conda install -y conda-libmamba-solver
Expand Down

0 comments on commit bd37e08

Please sign in to comment.