-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathDockerfile
More file actions
23 lines (18 loc) · 694 Bytes
/
Dockerfile
File metadata and controls
23 lines (18 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
FROM nvidia/cuda:8.0-runtime-ubuntu16.04
RUN apt-get update && \
apt-get install -y software-properties-common && \
add-apt-repository universe && \
add-apt-repository multiverse
RUN apt-get -y update && \
apt-get -y install python3-pip python3-dev python3-tk vim wget git && \
pip3 install --upgrade pip && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/*
ENV TERM xterm
ENV ZSH_THEME flazz
RUN apt-get -y update && \
apt-get install -y zsh && \
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh || true
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt && \
rm requirements.txt