File size: 277 Bytes
45ad5e0 81a5158 bdc67a8 81a5158 bdc67a8 45ad5e0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
FROM python:3.8
WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
RUN mkdir /.cache
RUN mkdir models
RUN mkdir /models
RUN chmod -R 777 /.cache
RUN chmod -R 777 /models
RUN chmod -R 777 models
COPY . .
CMD ["python", "main.py"] |