File size: 372 Bytes
9e1998d
 
 
 
 
 
 
 
 
 
 
cbb9e7b
 
 
 
9e1998d
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

FROM python:3.9

WORKDIR /code

COPY ./requirements.txt /code/requirements.txt

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

COPY . .

RUN mkdir -p /tmp/cache/
RUN chmod a+rwx -R /tmp/cache/

ENV TRANSFORMERS_CACHE=/tmp/cache/
ENV GRADIO_SERVER_NAME="0.0.0.0"
ENV GRADIO_SERVER_PORT=7860
ENV GRADIO_ALLOW_FLAGGING="never"

CMD ["python", "app.py"]