aed9eb9 20094de aed9eb9 46a0d74 2279df1 ce996a9 3027af9 43fb4be
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM python:latest WORKDIR /app COPY . . RUN pip install --no-cache-dir -r requirements.txt RUN mkdir /.cache && chmod 777 /.cache RUN mkdir /app/model && chmod 777 /app/model CMD ["python3", "train.py"]