File size: 477 Bytes
3fde957
 
07dc157
 
 
c79ada0
 
 
 
 
48e17a6
 
3fde957
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FROM python:3.9

WORKDIR /app
COPY . /app

ENV HF_HOME=/app/.cache

RUN mkdir -p /app/.cache/huggingface/hub && \
    chmod -R 777 /app/.cache && \
    chmod -R 777 /app/.cache/huggingface



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

COPY --chown=user ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt

EXPOSE 7860

CMD ["uvicorn", "src.api.main:app", "--host", "0.0.0.0", "--port", "7860"]