-
Notifications
You must be signed in to change notification settings - Fork 10
/
lace-cuda-10p0.Dockerfile
68 lines (62 loc) · 1.78 KB
/
lace-cuda-10p0.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# ---------------------------------------------------------------
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved.
#
# This work is licensed under the NVIDIA Source Code License
# for LACE. To view a copy of this license, see the LICENSE file.
# ---------------------------------------------------------------
FROM nvidia/cuda:10.0-cudnn7-devel-ubuntu18.04
ENV DEBIAN_FRONTEND=noninteractive
# Install package dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
autoconf \
automake \
libtool \
pkg-config \
ca-certificates \
wget \
git \
curl \
ca-certificates \
libjpeg-dev \
libpng-dev \
python3 \
python3-dev \
python3-pip \
python3-setuptools \
zlib1g-dev \
swig \
cmake \
vim \
locales \
locales-all \
screen \
zip \
unzip \
python3-tk \
xvfb \
ghostscript
RUN apt-get clean
ENV LC_ALL en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8
RUN cd /usr/local/bin && \
ln -s /usr/bin/python3 python && \
ln -s /usr/bin/pip3 pip && \
pip install --upgrade pip setuptools
RUN pip install numpy==1.16.4 \
pyyaml==5.3.1 \
wheel==0.34.2 \
scipy==1.5.2 \
torch==1.7.1 \
torchvision==0.8.2 \
pillow==7.2.0 \
matplotlib==3.3.0 \
tqdm==4.46.0 \
tensorflow-gpu==1.14 \
tensorboardX==2.0 \
seaborn==0.10.1 \
pandas==1.1.0 \
requests==2.24.0 \
xvfbwrapper==0.2.9 \
torchdiffeq==0.2.1 \