Skip to content

Commit

Permalink
docker: fix conda version (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhongtianq authored Jun 12, 2024
1 parent f366c6b commit a10a98d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docker/trustedflow-dev-ubuntu22.04.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ RUN curl -LO https://github.com/protocolbuffers/protobuf/releases/download/v3.19


# install conda
RUN wget http://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh \
&& bash Miniconda3-latest-Linux-x86_64.sh -b && rm -f Miniconda3-latest-Linux-x86_64.sh \
RUN wget http://repo.anaconda.com/miniconda/Miniconda3-py310_24.4.0-0-Linux-x86_64.sh \
&& bash Miniconda3-py310_24.4.0-0-Linux-x86_64.sh -b && rm -f Miniconda3-py310_24.4.0-0-Linux-x86_64.sh \
&& ln -sf /root/miniconda3/bin/conda /usr/bin/conda \
&& conda init

Expand Down
4 changes: 2 additions & 2 deletions docker/trustedflow-release-ubuntu22.04.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ RUN ln -sf /usr/bin/bash /bin/sh
RUN apt update && apt install wget curl -y && apt clean

# install conda
RUN wget http://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh \
&& bash Miniconda3-latest-Linux-x86_64.sh -b && rm -f Miniconda3-latest-Linux-x86_64.sh \
RUN wget http://repo.anaconda.com/miniconda/Miniconda3-py310_24.4.0-0-Linux-x86_64.sh \
&& bash Miniconda3-py310_24.4.0-0-Linux-x86_64.sh -b && rm -f Miniconda3-py310_24.4.0-0-Linux-x86_64.sh \
&& ln -sf /root/miniconda3/bin/conda /usr/bin/conda \
&& conda init

Expand Down

0 comments on commit a10a98d

Please sign in to comment.