2022-05-12 00:12:16 +00:00
|
|
|
FROM ubuntu:jammy
|
2019-06-07 20:00:02 +00:00
|
|
|
|
2020-06-25 18:12:29 +00:00
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
2022-05-12 00:12:16 +00:00
|
|
|
ARG PYSIDE2_VERSION=5.15.2.1
|
2021-06-30 17:54:26 +00:00
|
|
|
|
2020-06-25 18:12:29 +00:00
|
|
|
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
|