forked from AMS-MRC-disc-math-bio/pmfe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
29 lines (25 loc) · 788 Bytes
/
Dockerfile
File metadata and controls
29 lines (25 loc) · 788 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
# Build on a Debian "jessie"/8.0 foundation
FROM debian:jessie
MAINTAINER Andrew Gainer-Dewar <andrew.gainer.dewar@gmail.com>
# Install the dependencies
RUN apt-get update && \
apt-get install -y --no-install-recommends \
git \
build-essential \
gcc \
make \
libgmp-dev \
libboost-filesystem-dev \
libboost-program-options-dev \
libboost-log-dev \
libcgal-dev \
ca-certificates && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Pull the pmfe repository and build the software
RUN cd /root && \
git clone https://github.com/AMS-MRC-disc-math-bio/pmfe && \
cd pmfe && \
make
# Set the working directory for convenience
WORKDIR /root/pmfe