Files
docker-qt/Dockerfile

14 lines
414 B
Docker
Raw Normal View History

2016-09-21 16:42:24 -05:00
FROM ubuntu:latest
2018-10-05 09:59:38 -05:00
RUN \
apt update && \
apt -y upgrade && \
2018-11-12 16:59:02 -06:00
apt -y install bash build-essential clang cmake cppcheck curl gdb git gperf \
2018-11-12 17:09:28 -06:00
iputils-ping libboost-all-dev libgl1-mesa-dev libjemalloc1 libjemalloc-dev libmlpack-dev \
2018-11-12 16:59:02 -06:00
linux-tools-generic nano valgrind wget spawn-fcgi libfcgi-dev \
qt5-default && \
2018-10-05 09:59:38 -05:00
apt -y autoremove && \
apt -y autoclean && \
apt -y clean && \
rm -rf /var/lib/apt/lists/* && \
exit 0