We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 817ad49 commit f124812Copy full SHA for f124812
1 file changed
Dockerfile
@@ -1,29 +1,21 @@
1
-FROM python:3.13
+FROM ubuntu:22.04
2
+
3
+ENV DEBIAN_FRONTEND=noninteractive
4
5
RUN apt-get update && apt-get install -y \
- libegl1 \
- libxkbcommon0 \
6
- libxkbcommon-x11-0 \
7
- libgl1 \
8
- libdbus-1-3 \
9
- libxcb-cursor0 \
10
- libxcb-icccm4 \
11
- libxcb-image0 \
12
- libxcb-keysyms1 \
13
- libxcb-randr0 \
14
- libxcb-render-util0 \
15
- libxcb-shape0 \
16
- libxcb-xinerama0 \
17
- libxcb-xkb1 \
+ python3 \
+ python3-pip \
+ python3-pyqt6 \
+ libglib2.0-0 \
18
&& rm -rf /var/lib/apt/lists/*
19
20
WORKDIR /app
21
22
COPY requirements.txt .
23
-RUN pip install --no-cache-dir -r requirements.txt
+RUN pip3 install --no-cache-dir -r requirements.txt
24
25
COPY src/ src/
26
27
ENV PYTHONPATH=/app/src
28
29
-CMD ["python", "src/main.py"]
+CMD ["python3", "src/main.py"]
0 commit comments