-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
51 lines (37 loc) · 954 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
49
50
51
FROM ubuntu:14.04
MAINTAINER Adrien
RUN apt-get update -y && \
apt-get install software-properties-common python-software-properties -y
####
# Cmake 3 and build tools
RUN apt-get update -y && \
add-apt-repository ppa:george-edison55/cmake-3.x -y && \
apt-get update -y && \
apt-get install cmake -y && \
apt-get install build-essential -y
####
# Install git
RUN apt-get update && apt-get install -y git
####
# Install FFTW
RUN apt-get update && \
apt-get install libfftw3-dev -y
####
# Install Boost
RUN apt-get install libboost-all-dev -y
####
# Install Ronn
RUN apt-get install ruby-ronn -y
WORKDIR /usr/local
####
# Install xcorrsound
RUN git clone /~https://github.com/openpreserve/scape-xcorrsound
WORKDIR /usr/local/scape-xcorrsound
RUN pwd && ls -la
RUN mkdir build
WORKDIR /usr/local/scape-xcorrsound/build
RUN pwd && ls -la
RUN cmake ..
RUN make && make install
ENTRYPOINT ["waveform-compare"]
CMD ["--help"]