accountfree-docker/ubuntu-pyside2-xvfb/Dockerfile

11 lines
357 B
Docker
Raw Normal View History

2022-05-12 00:12:16 +00:00
FROM ubuntu:jammy
2019-06-07 20:00:02 +00:00
ARG DEBIAN_FRONTEND=noninteractive
2022-05-12 00:12:16 +00:00
ARG PYSIDE2_VERSION=5.15.2.1
ENV TZ=Europe/Paris
2019-06-07 20:00:02 +00:00
RUN apt-get update
2022-05-12 00:12:16 +00:00
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