File size: 510 Bytes
c9858f6 7f0ea71 c9858f6 7f0ea71 c9858f6 fd586ae |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
FROM python:3.10.9
WORKDIR /code
ENV TRANSFORMERS_CACHE=/tmp/cache/huggingface
ENV HF_HOME=/tmp/huggingface-cache
COPY ./requirements.txt /code/requirements.txt
RUN mkdir -p /tmp/cache/huggingface && chmod -R 777 /tmp/cache/huggingface
RUN mkdir -p /tmp/huggingface-cache && chmod -R 777 /tmp/huggingface-cache
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
RUN pip install --no-cache-dir --upgrade g4f[all]
COPY . .
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] |