Skip to content

Commit

Permalink
dev(narugo): add conda installation
Browse files Browse the repository at this point in the history
  • Loading branch information
narugo1992 committed Dec 9, 2024
1 parent 2a62295 commit a6519a2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ RUN apt update && \
apt install -y nano wget curl zip unzip rar unrar cloc htop tmux
RUN wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O /data/miniconda.sh && \
chmod +x /data/miniconda.sh
RUN /data/miniconda.sh -b -p /root/miniconda3
ENV PATH /root/miniconda3/bin:$PATH
RUN conda init bash && \
conda clean -a -y && \
conda install python=3.10 cudnn libcufft cuda-cudart && \
conda clean -a -y
RUN conda --version

RUN ls -al /data

CMD [ "/start.sh" ]

0 comments on commit a6519a2

Please sign in to comment.