* remove dependency on deprecated qt5 libraries for qt6 removes the use of qt6-5compat for builds replaces use of QRegExp with QRegularExpression fixes incorrect usage of QRegExp removes use of QTextCodec fixes incorrect usage of QTextCodec sets qtlinguist as a required component for qt6 * fix anchoredPattern not existing in qt 5.11
14 lines
294 B
Docker
14 lines
294 B
Docker
FROM fedora:36
|
|
|
|
RUN dnf install -y \
|
|
ccache \
|
|
cmake \
|
|
gcc-c++ \
|
|
git \
|
|
mariadb-devel \
|
|
protobuf-devel \
|
|
qt6-{qttools,qtsvg,qtmultimedia,qtwebsockets}-devel \
|
|
rpm-build \
|
|
xz-devel \
|
|
zlib-devel \
|
|
&& dnf clean all
|