FROM python:3.11-slim WORKDIR $HOME/app COPY . . RUN pip install -r requirements.txt VOLUME /data CMD ["python", "main.py"]