FROM python:3.12-trixie WORKDIR /app COPY . . RUN pip3 install -r req.txt RUN mkdir -p /app/data CMD ["python", "main.py"]