AI_API / Dockerfile
Yuuki0125's picture
Update Dockerfile
7f0ea71 verified
raw
history blame contribute delete
510 Bytes
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"]