forked from wwwfan628/DA-AIM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
69 lines (61 loc) · 1.51 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
FROM susaha/damtl
RUN apt-get -y update
RUN apt-get -y update
RUN rm /var/lib/apt/lists/lock
RUN apt-get -y update
RUN apt-get install -y \
net-tools \
ssh-client \
sshfs \
apt-utils \
wget \
libopenmpi-dev \
unzip \
ffmpeg \
tmux \
psmisc \
screen
ARG project_dir=/raid/gusingh/
WORKDIR $project_dir
ADD setup* $project_dir
# commonly used
#RUN pip install --upgrade pip
#RUN pip install cython
#RUN pip install Pillow
#RUN pip install numpy
#RUN pip install scikit-image
#RUN pip install tqdm
#RUN pip install pyyaml
#RUN pip install matplotlib
#RUN pip install torch
#RUN pip install torchvision
#RUN pip install protobuf
#RUN pip install psutil
#RUN pip install tensorboardX
#RUN pip install gpustat
#RUN pip install opencv-python
#RUN pip install scikit-learn
#RUN pip install torch-encoding
#RUN pip install pandas
#RUN pip install imgaug
#RUN pip install tensorboard
#RUN pip install pycocotools
#RUN pip install h5py
# adventcvpr2019
#RUN pip install easydict
# tensorflow
# RUN pip install tensorflow tensorflow-gpu
# mti_simon
#RUN pip install termcolor
#RUN pip install imageio
#RUN pip install wrapt==1.10.0 --ignore-installed
## Added by gurkirt
RUN pip install tensorboard
RUN conda install av -c conda-forge
RUN conda install ffmpeg=4.2 -c conda-forge
RUN pip install simplejson
RUN pip install psutil
RUN pip install moviepy
RUN python -m pip install detectron2 -f \
https://dl.fbaipublicfiles.com/detectron2/wheels/cu102/torch1.6/index.html
RUN python setup.py build develop