2024-11-05 04:09:55 +00:00
|
|
|
FROM debian:unstable-20241016-slim
|
2019-09-17 05:03:02 +00:00
|
|
|
|
|
|
|
RUN apt-get update && DEBIAN_FRONTEND=noninteractive \
|
2024-11-05 04:09:55 +00:00
|
|
|
apt-get install -y python3 \
|
|
|
|
qttools5-dev-tools pyqt5-dev-tools python3-pyqt5 python3-pyqt5.qtmultimedia \
|
2019-09-26 16:39:40 +00:00
|
|
|
python3-pyqt5.qtsvg python3-pyqt5.qtopengl python3-pyqt5.qtwebchannel python3-pyqt5.qtwebengine \
|
2024-11-05 04:09:55 +00:00
|
|
|
python3-dbus.mainloop.pyqt5 \
|
|
|
|
qt6-base-dev-tools pyside6-tools python3-pyside6.qtcore python3-pyside6.qtgui \
|
2024-11-09 04:01:07 +00:00
|
|
|
python3-pyside6.qtmultimedia python3-pyside6.qtmultimediawidgets python3-pyside6.qtsvg \
|
|
|
|
python3-pyside6.qtopengl python3-pyside6.qtwebchannel python3-pyside6.qtwebengine \
|
2024-11-13 14:19:42 +00:00
|
|
|
python3-pyside6.qtpdf python3-pyside6.qttest \
|
2024-11-05 04:09:55 +00:00
|
|
|
python3-sqlalchemy python3-alembic python3-chardet python3-lxml python3-enchant python3-bs4 \
|
|
|
|
python3-mako python3-uno python3-pytest python3-pytest-cov python3-websockets python3-webob \
|
|
|
|
python3-waitress python3-requests python3-pymediainfo python3-qtawesome python3-opengl \
|
|
|
|
python3-platformdirs python3-zeroconf python3-pip python3-flake8 python3-flask \
|
|
|
|
python3-flask-cors python3-distro flake8 mediainfo xvfb python3-pytestqt python3-paramiko \
|
|
|
|
twine python3-fitz python3-pyro5 python3-qrcode python3-icu python3-pyodbc
|
2024-02-14 06:09:08 +00:00
|
|
|
COPY fixpaths.py /usr/bin/fixpaths
|
2019-10-13 04:31:04 +00:00
|
|
|
RUN chmod a+x /usr/bin/fixpaths
|
2024-02-14 06:09:08 +00:00
|
|
|
COPY uploadversion.py /usr/bin/uploadversion
|
2020-04-25 06:06:28 +00:00
|
|
|
RUN chmod a+x /usr/bin/uploadversion
|