-
Notifications
You must be signed in to change notification settings - Fork 3
/
Dockerfile
48 lines (42 loc) · 967 Bytes
/
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
FROM python:3.5
RUN echo "deb http://httpredir.debian.org/debian jessie-backports main" > \
/etc/apt/sources.list.d/backports.list && \
apt-get clean && \
apt-get update && \
apt-get install -y \
build-essential \
cmake \
git \
wget \
unzip \
yasm \
pkg-config \
libswscale-dev \
libtbb2 \
libtbb-dev \
libjpeg-dev \
libpng-dev \
libtiff-dev \
libjasper-dev \
libavformat-dev \
libpq-dev \
libfreetype6-dev \
ffmpeg
RUN apt-get clean && \
apt-get install -y \
python3-matplotlib \
python3-numpy \
python3-scipy \
python3-pip \
&& \
rm -rf /var/cache/apt/*
RUN pip3 install --upgrade --no-cache-dir \
sk-video \
flake8 \
pep8 \
tqdm \
matplotlib \
scikit-image \
sklearn
WORKDIR /src/
CMD bash main.sh