13 lines
573 B
Docker
13 lines
573 B
Docker
FROM ubuntu:noble
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
ARG PYSIDE2_VERSION=6.7.2
|
|
|
|
ENV TZ=Europe/Paris
|
|
RUN apt-get update
|
|
RUN apt-get -y install make git rpm dh-python \
|
|
xvfb xdotool wmctrl \
|
|
python3 python3-pip python3-stdeb python-all python3-requests python3-packaging python3-pip python3-pytest python3-pytest-cov python3-pytestqt
|
|
RUN rm /usr/lib/python3.*/EXTERNALLY-MANAGED # Disable managed environment. We don't care about breaking system packages here.
|
|
RUN python3 -m pip install PySide6==$PYSIDE2_VERSION
|
|
RUN apt clean
|