11 lines
369 B
Text
11 lines
369 B
Text
|
FROM ubuntu:jammy
|
||
|
|
||
|
ARG DEBIAN_FRONTEND=noninteractive
|
||
|
ARG PYSIDE2_VERSION=6.5.0
|
||
|
|
||
|
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
|