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