docker-ubuntu-pyside-xvfb/pyside6-linux/Dockerfile

16 lines
664 B
Docker
Raw Normal View History

2024-09-18 16:26:15 +00:00
FROM ubuntu:noble
2023-05-23 03:46:30 +00:00
ARG DEBIAN_FRONTEND=noninteractive
2024-09-18 16:26:15 +00:00
ARG PYSIDE2_VERSION=6.7.2
2023-05-23 03:46:30 +00:00
ENV TZ=Europe/Paris
RUN apt-get update
2024-09-19 19:30:53 +00:00
RUN apt-get upgrade -y
RUN apt-get -y install make git rpm dh-python \
xvfb xdotool wmctrl \
2024-09-19 17:41:06 +00:00
python3 python3-pip python3-stdeb python3-requests python3-packaging python3-pip python3-pytest python3-pytest-cov python3-pytestqt
2024-09-18 16:26:15 +00:00
RUN rm /usr/lib/python3.*/EXTERNALLY-MANAGED # Disable managed environment. We don't care about breaking system packages here.
2024-09-19 19:30:53 +00:00
RUN python3 -m pip install -U setuptools # Upgrading packages that need fixes.
2023-05-23 03:46:30 +00:00
RUN python3 -m pip install PySide6==$PYSIDE2_VERSION
RUN apt clean