-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathDockerfile
More file actions
38 lines (32 loc) · 793 Bytes
/
Dockerfile
File metadata and controls
38 lines (32 loc) · 793 Bytes
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
FROM pytorch/pytorch:0.4.1-cuda9-cudnn7-runtime
MAINTAINER Lukas Liebel <lukas.liebel@tum.de>
# Install utils
# RUN apt update && apt install -y \
# tmux \
# htop \
# wget \
# nano \
# git \
# rsync
RUN pip install --upgrade pip
# Install required packages
RUN pip install cython
RUN pip install matplotlib
RUN pip install numpy
RUN pip install scipy
RUN pip install tqdm
RUN pip install visdom
RUN pip install pydensecrf
RUN pip install protobuf
RUN pip install tensorboardX
RUN pip install tensorflow
RUN pip install tensorboard
RUN pip install pandas
RUN pip install scikit-learn
RUN pip install imageio
# Setup matplotlib
RUN mkdir -p /root/.config/matplotlib
RUN echo "backend : Agg" > /root/.config/matplotlib/matplotlibrc
ENV workdir /root
WORKDIR ${workdir}
CMD bash