From 4336434c5016158be882c897d5c29900a53438ac Mon Sep 17 00:00:00 2001 From: Faraz Fallahi Date: Wed, 31 May 2017 16:09:35 -0500 Subject: [PATCH] Update Dockerfile --- static/Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/static/Dockerfile b/static/Dockerfile index afb1fe5..ed74640 100644 --- a/static/Dockerfile +++ b/static/Dockerfile @@ -7,14 +7,14 @@ apt -y install build-essential git iputils-ping nano python wget && \ apt -y autoremove && \ apt -y autoclean && \ cd /opt && \ -wget -q http://download.qt.io/official_releases/qt/5.8/5.8.0/single/qt-everywhere-opensource-src-5.8.0.tar.gz && \ -tar xf qt-everywhere-opensource-src-5.8.0.tar.gz && \ -rm qt-everywhere-opensource-src-5.8.0.tar.gz && \ -cd qt-everywhere-opensource-src-5.8.0 && \ +wget -q http://download.qt.io/official_releases/qt/5.9/5.9.0/single/qt-everywhere-opensource-src-5.9.0.tar.xz && \ +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 -strip -static -nomake examples -no-compile-examples -no-opengl && \ make -j $(($(grep -c ^processor /proc/cpuinfo 2>/dev/null || 1)+2)) && \ make install && \ cd /opt && \ -rm -rf qt-everywhere-opensource-src-5.8.0 && \ +rm -rf qt-everywhere-opensource-src-5.9.0 && \ exit 0 -ENV PATH="${PATH}:/usr/local/Qt-5.8.0/bin" +ENV PATH="${PATH}:/usr/local/Qt-5.9.0/bin"