From d66b22a3d06cc5124a01dab063e1bd9d44444fcb Mon Sep 17 00:00:00 2001 From: Faraz Fallahi Date: Fri, 5 Oct 2018 09:59:38 -0500 Subject: [PATCH] Update Dockerfile --- Dockerfile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 049d6cd..528eeb0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,2 +1,10 @@ FROM ubuntu:latest -RUN apt update && apt -y upgrade && apt -y install bash build-essential clang cmake cppcheck gdb git gperf iputils-ping libmlpack-dev linux-tools-generic nano qt5-default valgrind wget && apt -y autoremove && apt -y autoclean && apt -y clean +RUN \ +apt update && \ +apt -y upgrade && \ +apt -y install bash build-essential clang cmake cppcheck gdb git gperf iputils-ping libjemalloc1 libjemalloc-dev libmlpack-dev linux-tools-generic nano qt5-default valgrind wget spawn-fcgi libfcgi-dev && \ +apt -y autoremove && \ +apt -y autoclean && \ +apt -y clean && \ +rm -rf /var/lib/apt/lists/* && \ +exit 0