From b3d36551de6c7ea5a90ad08cdb8752214bbbae52 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sat, 15 Feb 2025 11:26:32 +1100 Subject: [PATCH] Add PySide6 --- ubuntu-24.04-noble-arm64v8/Dockerfile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/ubuntu-24.04-noble-arm64v8/Dockerfile b/ubuntu-24.04-noble-arm64v8/Dockerfile index 92e1afea..a5826fb0 100644 --- a/ubuntu-24.04-noble-arm64v8/Dockerfile +++ b/ubuntu-24.04-noble-arm64v8/Dockerfile @@ -4,16 +4,26 @@ RUN apt-get -qq update && DEBIAN_FRONTEND=noninteractive apt-get -y install \ cmake \ ghostscript \ git \ + libegl-dev \ libfreetype6-dev \ libfribidi-dev \ libharfbuzz-dev \ libimagequant-dev \ libjpeg-turbo8-dev \ liblcms2-dev \ + libopengl-dev \ libopenjp2-7-dev \ libssl-dev \ libtiff5-dev \ libwebp-dev \ + libxcb-cursor0 \ + libxcb-icccm4 \ + libxcb-image0 \ + libxcb-keysyms1 \ + libxcb-randr0 \ + libxcb-render-util0 \ + libxcb-shape0 \ + libxkbcommon-x11-0 \ meson \ netpbm \ python3-dev \ @@ -38,7 +48,7 @@ ARG PIP_NO_CACHE_DIR=1 RUN virtualenv -p /usr/bin/python3.12 --system-site-packages /vpy3 \ && /vpy3/bin/pip install --upgrade pip \ - && /vpy3/bin/pip install olefile pytest pytest-cov pytest-timeout \ + && /vpy3/bin/pip install olefile pyside6 pytest pytest-cov pytest-timeout \ && chown -R pillow:pillow /vpy3 ADD depends /depends