mirror of
https://github.com/graphdeco-inria/gaussian-splatting
synced 2025-04-05 05:29:15 +00:00
21 lines
660 B
Docker
21 lines
660 B
Docker
#FROM nvidia/cuda:11.8.0-cudnn8-devel-ubuntu22.04
|
|
FROM nvidia/cuda:11.8.0-cudnn8-devel-ubuntu20.04
|
|
#FROM nvidia/cuda:12.5.0-devel-ubuntu22.04
|
|
|
|
RUN apt update -y
|
|
RUN apt install -y wget
|
|
|
|
RUN apt install -y build-essential
|
|
RUN apt install -y python3 python3-pip python-is-python3
|
|
|
|
## Miniconda
|
|
RUN mkdir -p /miniconda3
|
|
RUN wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O /miniconda3/miniconda.sh
|
|
RUN bash /miniconda3/miniconda.sh -b -u -p /miniconda3
|
|
RUN /miniconda3/bin/conda init bash
|
|
|
|
|
|
COPY environment.yml /root/environment.yml
|
|
RUN /miniconda3/bin/conda env create -f /root/environment.yml
|
|
|
|
CMD ["/bin/bash"] |