accountfree-docker/ubuntu-pyside6-xvfb/Dockerfile
2024-01-11 02:41:21 +01:00

11 lines
369 B
Docker

FROM ubuntu:jammy
ARG DEBIAN_FRONTEND=noninteractive
ARG PYSIDE2_VERSION=6.6.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 libxcb-cursor0
RUN python3 -m pip install PySide6==$PYSIDE2_VERSION
RUN apt clean