From 5b58626687b42864d9ea81265bfade35413d9f62 Mon Sep 17 00:00:00 2001 From: Maxim Slipenko Date: Sun, 30 Jul 2023 09:26:18 +0300 Subject: [PATCH] fix: add installation of pyside *.whl --- Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e6b53c9..192c95c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -43,6 +43,9 @@ cd $HOME && \ git clone -b ${QT} https://code.qt.io/pyside/pyside-setup.git && \ cd pyside-setup && \ pip install -r requirements.txt && \ -python setup.py build --parallel $(nproc) --limited-api yes' +python setup.py build --parallel $(nproc) bdist_wheel --limited-api yes && \ +pip install /home/vscode/pyside-setup/dist/*.whl' -ENV PYSIDE_INSTALL_DIR="/home/vscode/pyside-setup/build/qfpa-py${PYTHON}-qt${QT}-64bit-release/install" \ No newline at end of file +ENV PYSIDE_INSTALL_DIR="/home/vscode/pyside-setup/build/qfpa-py${PYTHON}-qt${QT}-64bit-release/install" + +USER root \ No newline at end of file