1 2 3 4 5
FROM python:3.12.7-bookworm WORKDIR /app COPY . . RUN pip install -r requirements.txt ENTRYPOINT ["python3", "gui-project/main.py"]