Spaces:
Sleeping
Sleeping
FROM python:3.11.1-bullseye | |
USER root | |
ENV PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python | |
COPY . /app | |
RUN chmod -R 777 /app | |
WORKDIR /app | |
RUN python3 -m pip install -U --no-cache-dir pip setuptools wheel | |
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt | |
RUN mkdir -p /.cache/huggingface/hub | |
RUN chown -R root:root /.cache/huggingface/hub | |
RUN chmod -R 777 /.cache/huggingface/hub | |
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] |