From 7ef8f6e58990fc069cccc71ed6564e8c639ea4fc Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Thu, 12 Mar 2020 14:33:57 +0000 Subject: initial commit --- Dockerfile | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..61f5f840 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,36 @@ +FROM ubuntu:19.04 + +RUN apt-get update && \ + DEBIAN_FRONTEND=noninteractive apt-get install -y tzdata && \ + apt-get remove -y python && \ + apt-get install -y --no-install-recommends \ + git \ + build-essential \ + r-base \ + latexmk + +# Make sure python means python3 +RUN apt-get install -y --no-install-recommends \ + python3 \ + python3-dev \ + python3-pip && \ + pip3 install --no-cache-dir --upgrade pip setuptools && \ + echo "alias python='python3'" >> /root/.bash_aliases && \ + echo "alias pip='pip3'" >> /root/.bash_aliases && \ + cd /usr/local/bin && ln -s /usr/bin/python3 python && \ + pip install virtualenv abed + +# Clone the dataset repo +RUN git clone https://github.com/alan-turing-institute/TCPD + +# Build the dataset +RUN cd TCPD && make export + +# Clone the repo +RUN git clone https://github.com/alan-turing-institute/TCPDBench + +# Copy the datasets into the benchmark dir +RUN mkdir -p TCPDBench/datasets && cp TCPD/export/*.json TCPDBench/dataset/ + +# Set the working directory +WORKDIR TCPDBench -- cgit v1.2.3