-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
43 lines (29 loc) · 1.83 KB
/
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
FROM ubuntu:14.04.3
MAINTAINER [email protected]
RUN echo "deb http://jp.archive.ubuntu.com/ubuntu/ trusty main restricted \n\
deb-src http://jp.archive.ubuntu.com/ubuntu/ trusty main restricted \n\
deb http://jp.archive.ubuntu.com/ubuntu/ trusty-updates main restricted \n\
deb-src http://jp.archive.ubuntu.com/ubuntu/ trusty-updates main restricted \n\
deb http://jp.archive.ubuntu.com/ubuntu/ trusty universe \n\
deb-src http://jp.archive.ubuntu.com/ubuntu/ trusty universe \n\
deb http://jp.archive.ubuntu.com/ubuntu/ trusty-updates universe \n\
deb-src http://jp.archive.ubuntu.com/ubuntu/ trusty-updates universe \n\
deb http://jp.archive.ubuntu.com/ubuntu/ trusty multiverse \n\
deb-src http://jp.archive.ubuntu.com/ubuntu/ trusty multiverse \n\
deb http://jp.archive.ubuntu.com/ubuntu/ trusty-updates multiverse \n\
deb-src http://jp.archive.ubuntu.com/ubuntu/ trusty-updates multiverse \n\
deb http://jp.archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse \n\
deb-src http://jp.archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse \n\
deb http://security.ubuntu.com/ubuntu trusty-security main restricted \n\
deb-src http://security.ubuntu.com/ubuntu trusty-security main restricted \n\
deb http://security.ubuntu.com/ubuntu trusty-security universe \n\
deb-src http://security.ubuntu.com/ubuntu trusty-security universe \n\
deb http://security.ubuntu.com/ubuntu trusty-security multiverse \n\
deb-src http://security.ubuntu.com/ubuntu trusty-security multiverse" > /etc/apt/sources.list
RUN apt-get -y update
RUN apt-get -y install curl build-essential git
RUN apt-get -y install python-dev python-numpy python-scipy python-matplotlib
RUN apt-get -y install python-pip
RUN pip install selectivesearch
RUN apt-get clean && rm -rf /var/lib/apt/lists/
WORKDIR /var/selective-search