0
0
mirror of https://github.com/python-LimeReport/containers.git synced 2025-10-15 15:39:12 +03:00
This commit is contained in:
2023-08-20 08:45:07 +03:00
parent 8af1c30602
commit 2f6032bafb
4 changed files with 31 additions and 77 deletions

View File

@@ -0,0 +1,27 @@
FROM quay.io/pypa/manylinux_2_28_x86_64 as env
ARG AQTINSTALL_VERSION=3.1.6
ARG QT_VERSION=6.4.2
RUN yum -y update \
&& yum -y groupinstall 'Development Tools' \
&& yum -y install \
wget \
openssl-devel \
bzip2-devel \
libffi-devel \
cmake \
clang \
clang-devel \
llvm \
llvm-devel \
mesa-libGL-devel \
&& dnf --enablerepo=powertools -y install ninja-build \
&& yum clean all \
&& rm -rf /var/cache/yum
RUN pipx install aqtinstall==${AQTINSTALL_VERSION} \
&& aqt install-qt --outputdir /opt/Qt linux desktop ${QT_VERSION}
ENV PATH="/opt/Qt/${QT_VERSION}/gcc_64/bin:$PATH"
ENV QT_VERSION=${QT_VERSION}