aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2020-03-18 13:13:56 +0000
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2020-03-18 13:13:56 +0000
commit30cddfc873e064179beb7b1cc13e1737c5b94a2a (patch)
treee9e3abc8c9b404cac38277f53ca7ad50817dadff /Dockerfile
parentAdd a note explaining the travis command (diff)
downloadTCPDBench-30cddfc873e064179beb7b1cc13e1737c5b94a2a.tar.gz
TCPDBench-30cddfc873e064179beb7b1cc13e1737c5b94a2a.zip
Update dockerfile and readme
The dockerfile now has everything necessary to fully reproduce the experiments.
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile9
1 files changed, 8 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 3c417153..cb4af446 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -7,15 +7,22 @@ RUN apt-get update && \
git \
build-essential \
r-base \
+ r-base-dev \
latexmk \
texlive-latex-extra \
libopenmpi-dev \
- liblzma-dev
+ liblzma-dev \
+ libgit2-dev \
+ libxml2-dev \
+ libcurl4-openssl-dev \
+ libssl-dev \
+ libopenblas-dev
# Make sure python means python3
RUN apt-get install -y --no-install-recommends \
python3 \
python3-dev \
+ python3-tk \
python3-pip && \
pip3 install --no-cache-dir --upgrade pip setuptools && \
echo "alias python='python3'" >> /root/.bash_aliases && \