Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Vu Anh committed Jun 9, 2024
1 parent d8d2159 commit 2ad9ea2
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions extensions/docker/build-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ ENV PATH /opt/conda/envs/python3.8/bin:$PATH
ENV PATH /opt/conda/envs/python3.9/bin:$PATH
ENV PATH /opt/conda/envs/python3.10/bin:$PATH
ENV PATH /opt/conda/envs/python3.11/bin:$PATH
ENV PATH /opt/conda/envs/python3.12/bin:$PATH

# python 3.7
RUN conda create -f -y -n python3.7 python=3.7
Expand Down Expand Up @@ -60,3 +61,9 @@ RUN conda create -f -y -n python3.11 python=3.11
RUN ln -s /opt/conda/envs/python3.11/bin/python3.11 /usr/bin/python3.11
RUN source activate python3.11 && conda install -y pip
RUN python3.11 -m pip install poetry

# python 3.12
RUN conda create -f -y -n python3.12 python=3.12
RUN ln -s /opt/conda/envs/python3.12/bin/python3.12 /usr/bin/python3.12
RUN source activate python3.12 && conda install -y pip
RUN python3.12 -m pip install poetry

0 comments on commit 2ad9ea2

Please sign in to comment.