-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
39 lines (29 loc) · 738 Bytes
/
Dockerfile
File metadata and controls
39 lines (29 loc) · 738 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 tensorflow/tensorflow:latest-gpu
ENV TZ=Europe/Kiev
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN set -x && \
apt update && \
apt install -y --no-install-recommends \
jupyter \
git\
wget\
build-essential \
apt-utils \
ca-certificates \
curl \
software-properties-common \
libopencv-dev \
cmake \
swig \
wget \
unzip \
tmux
RUN pip3 install pip --upgrade
RUN apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN mkdir /home/app/
RUN pip install pipenv
COPY requirements.txt ./tmp/requirements.txt
WORKDIR /tmp
RUN pip install -r requirements.txt
WORKDIR /home/app