From e60295246685cfe23d43183f8e976e3bedd98ec5 Mon Sep 17 00:00:00 2001 From: Alexander Diamadis Date: Mon, 14 Nov 2022 01:13:57 +0000 Subject: [PATCH] =?UTF-8?q?=E2=80=9EDockerfile=E2=80=9C=20=C3=A4ndern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 13569e4..b0622f1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,11 @@ + FROM debian:11 RUN apt update && apt install -y build-essential libgl1-mesa-dev git cmake libmariadb-dev RUN git clone https://code.qt.io/qt/qt5.git /root/qt6 WORKDIR /root/qt6 RUN git checkout 6.4 -RUN perl init-repository --module-subset=qtbase,qtpositioning,qthttpserver,qtwebsockets -RUN mkdir /root/qt6-build && cd /root/qt6-build && /root/qt6/configure -no-opengl -no-gui -no-widgets -no-dbus -no-pcre -static -release -- -D QT_FORCE_MIN_CMAKE_VERSION_FOR_BUILDING_QT=3.18 +RUN perl init-repository --module-subset=qtbase,qtpositioning,qthttpserver +RUN mkdir /root/qt6-build && cd /root/qt6-build && /root/qt6/configure -no-opengl -no-gui -no-widgets -no-dbus -no-xml -no-pcre WORKDIR /root/qt6-build RUN cmake --build . --parallel 2 RUN cmake --install .