forked from thuml/Autoformer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
33 lines (25 loc) · 892 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
FROM nvidia/cuda:11.2.0-devel-ubuntu18.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update -y --fix-missing && \
apt-get install -y --no-install-recommends \
software-properties-common \
wget \
curl \
unrar \
unzip \
git && \
apt-get upgrade -y libstdc++6 && \
apt-get clean -y
RUN add-apt-repository ppa:ubuntu-toolchain-r/test && \
apt-get update && \
apt-get install -y gcc-9 && \
apt-get upgrade -y libstdc++6
RUN wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh && \
bash Miniconda3-latest-Linux-x86_64.sh -p /miniconda -b && \
rm -rf Miniconda3-latest-Linux-x86_64.sh
ENV PATH=/miniconda/bin:${PATH}
RUN conda update -y conda
RUN conda install -n base -c conda-forge mamba
ADD ./environment.yml ./environment.yml
RUN mamba env update -n base -f ./environment.yml && \
conda clean -afy