10 lines
357 B
Docker
10 lines
357 B
Docker
FROM ubuntu:jammy
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
ARG PYSIDE2_VERSION=5.15.2.1
|
|
|
|
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
|
|
RUN python3 -m pip install PySide2==$PYSIDE2_VERSION
|
|
RUN apt clean
|