From c1528b09ad1f0028fe188dd7bdfd62d3af31a33d Mon Sep 17 00:00:00 2001 From: Faraz Fallahi Date: Thu, 1 Jun 2017 15:09:08 -0500 Subject: [PATCH] Update Dockerfile --- static/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/Dockerfile b/static/Dockerfile index dbadb40..c0b8cf2 100644 --- a/static/Dockerfile +++ b/static/Dockerfile @@ -4,6 +4,7 @@ RUN \ apt -y update && \ apt -y upgrade && \ apt -y install build-essential git iputils-ping nano python wget && \ +apt -y install mesa-common-dev libgl1-mesa-dev libglu1-mesa-dev freeglut3-dev && \ apt -y autoremove && \ apt -y autoclean && \ cd /opt && \ @@ -11,8 +12,7 @@ wget -q http://download.qt.io/official_releases/qt/5.9/5.9.0/single/qt-everywher tar xf qt-everywhere-opensource-src-5.9.0.tar.xz && \ rm qt-everywhere-opensource-src-5.9.0.tar.xz && \ cd qt-everywhere-opensource-src-5.9.0 && \ -./configure -opensource -confirm-license -release -static \ --nomake examples -nomake tests -nomake tools -no-compile-examples && \ +./configure -opensource -confirm-license -release -static -nomake examples -nomake tests -nomake tools -no-compile-examples && \ make -j $(($(grep -c ^processor /proc/cpuinfo 2>/dev/null || 1)+2)) && \ make install && \ cd /opt && \