-
Notifications
You must be signed in to change notification settings - Fork 53
/
Dockerfile
45 lines (41 loc) · 982 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
FROM ubuntu:14.04
# Install apt-getable dependencies (opencv dependencies)
RUN apt-get update && \
apt-get install -y software-properties-common && \
add-apt-repository --yes ppa:xqms/opencv-nonfree && apt-get update && \
apt-get install -y \
git \
autoconf \
automake \
libtool \
unzip \
build-essential \
cmake \
libgtk2.0-dev \
pkg-config \
libavcodec-dev \
libavformat-dev \
libswscale-dev \
python-dev \
python-numpy \
libtbb2 \
libtbb-dev \
libjpeg-dev \
libpng-dev \
libtiff-dev \
libjasper-dev \
libdc1394-22-dev \
libboost1.55-all-dev \
libboost-python1.55-dev \
libopencv-dev \
libopencv-nonfree-dev
# libvot
RUN \
mkdir /source && cd /source && \
git clone https://github.com/hlzz/libvot.git && \
cd /source/libvot && \
git submodule init && git submodule update && \
mkdir build && \
cd build && \
cmake ../ && \
make -j4