including GUI dependencies in static build

This commit is contained in:
Gregor Fabritius
2020-10-19 23:55:51 +02:00
parent b20c3d3446
commit cf4a7d71e4

View File

@@ -23,8 +23,12 @@ RUN \
wget -q http://download.qt.io/official_releases/qt/5.15/5.15.0/single/qt-everywhere-src-5.15.0.tar.xz && \ wget -q http://download.qt.io/official_releases/qt/5.15/5.15.0/single/qt-everywhere-src-5.15.0.tar.xz && \
tar xf qt-everywhere-src-5.15.0.tar.xz && \ tar xf qt-everywhere-src-5.15.0.tar.xz && \
rm qt-everywhere-src-5.15.0.tar.xz && \ rm qt-everywhere-src-5.15.0.tar.xz && \
cd qt-everywhere-src-5.15.0 && \ cd qt-everywhere-src-5.15.0
./configure -opensource -confirm-license -release -static -nomake tests -nomake examples -skip qtwebengine && \
RUN \
cd /opt/qt-everywhere-src-5.15.0 && \
./configure -opensource -confirm-license -release -static -nomake tests -nomake examples -skip qtwebengine \
-qt-zlib -qt-libjpeg -qt-libpng -bundled-xcb-xinput -qt-freetype -qt-pcre -qt-harfbuzz && \
make -j $(($(nproc)+4)) && \ make -j $(($(nproc)+4)) && \
make install && \ make install && \
cd /opt && \ cd /opt && \