-
Notifications
You must be signed in to change notification settings - Fork 117
/
Copy pathDockerfile
55 lines (52 loc) · 1.03 KB
/
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
FROM pytorch/pytorch:1.1.0-cuda10.0-cudnn7.5-devel
RUN apt-get update && apt-get install -y \
git \
wget \
curl \
cmake \
unzip \
build-essential \
libsm6 \
libxext6 \
libfontconfig1 \
libxrender1 \
libswscale-dev \
libtbb2 \
libtbb-dev \
libjpeg-dev \
libpng-dev \
libtiff-dev \
libjasper-dev \
libavformat-dev \
libpq-dev \
libturbojpeg \
software-properties-common \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
RUN pip install --no-cache-dir \
numpy \
pandas \
PyYAML \
cycler \
dill \
h5py \
imgaug \
matplotlib \
opencv-contrib-python \
Pillow \
scikit-image \
scikit-learn \
scipy \
setuptools \
six \
tqdm \
ipython \
ipdb \
albumentations \
click \
jpeg4py \
addict \
colorama \
torchvision \
iterative-stratification
RUN pip install --upgrade --no-cache-dir cython && pip install --no-cache-dir pycocotools==2.0.0 mmcv==0.2.5