Dockerfile 291 B

1234567
  1. FROM ubuntu:22.04
  2. # Install conda
  3. RUN apt-get update && apt-get install -y wget && \
  4. wget https://repo.anaconda.com/miniconda/Miniconda3-py39_4.10.3-Linux-x86_64.sh && \
  5. bash Miniconda3-py39_4.10.3-Linux-x86_64.sh -b -p /miniconda3 && \
  6. rm Miniconda3-py39_4.10.3-Linux-x86_64.sh