Files
docker-qt/Dockerfile

11 lines
375 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-10-05 10:09:15 -05:00
apt -y install bash build-essential clang cmake cppcheck curl gdb git gperf iputils-ping libjemalloc1 libjemalloc-dev libmlpack-dev linux-tools-generic nano qt5-default valgrind wget spawn-fcgi libfcgi-dev && \
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