File size: 272 Bytes
aed9eb9
 
 
 
20094de
aed9eb9
be2f96f
aed9eb9
46a0d74
2279df1
ce996a9
bdf0ab5
3027af9
43fb4be
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:latest

WORKDIR /app

COPY . .

RUN pip install --no-cache-dir --upgrade -r requirements.txt

RUN mkdir /.cache && chmod 777 /.cache

RUN mkdir /app/model && chmod 777 /app/model
RUN mkdir /app/tokenizer && chmod 777 /app/tokenizer

CMD ["python3", "train.py"]