Update Dockerfile

This commit is contained in:
Faraz Fallahi
2018-10-05 09:59:38 -05:00
committed by GitHub
parent c4c8b1b2e6
commit d66b22a3d0

View File

@@ -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