FROM python:3.11-slim RUN pip install requests WORKDIR /app COPY training.py . RUN mkdir -p /data CMD ["python", "training.py"]