File size: 461 Bytes
34ac963 1f1eba6 d15996f 34ac963 1f1eba6 97024ed |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
FROM python:3.9
# Set HF_HOME environment variable to specify cache directory
ENV HF_HOME=/code/.cache/huggingface
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
# Set permissions for cache directory
RUN mkdir -p /code/.cache/huggingface/transformers \
&& chmod -R 777 /code/.cache/huggingface
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |