9baef07
1
2
3
4
5
6
7
FROM python:3.11-slim RUN pip install requests WORKDIR /app COPY training.py . RUN mkdir -p /data CMD ["python", "training.py"]