commit b9546c409134ffdcf0dc91483d0e254e58d60dae Author: Alexander Diamadis Date: Sun Nov 13 10:05:50 2022 +0100 Created Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..be9ab87 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM debian:11 +RUN apt update && apt install build-essential libgl1-mesa-dev git cmake libmariadb-dev +RUN git clone https://code.qt.io/qt/qt5.git qt6 +WORKDIR /root/qt6 +RUN perl init-repository --module-subset=qtbase,qtpositioning,qthttpserver +RUN /root/qt6/configure +RUN cmake --build . --parallel 4 +RUN cmake --install . +ENV QTVERSION=6.4.2 +WORKDIR /usr/local/Qt-${QTVERSION}/bin +RUN rm -rf /root/*