2023-05-23 03:46:30 +00:00
|
|
|
FROM ubuntu:jammy
|
|
|
|
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
2024-01-11 01:41:21 +00:00
|
|
|
ARG PYSIDE2_VERSION=6.6.1
|
2023-05-23 03:46:30 +00:00
|
|
|
|
|
|
|
ENV TZ=Europe/Paris
|
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get -y install make git python3-pip qml-module-qtquick-controls2 qml-module-qtmultimedia qml-module-qtgraphicaleffects qml-module-qtquick2 xvfb xdotool wmctrl libxcb-cursor0
|
|
|
|
RUN python3 -m pip install PySide6==$PYSIDE2_VERSION
|
|
|
|
RUN apt clean
|