Spaces:
Runtime error
Runtime error
File size: 838 Bytes
be1ce5d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | FROM python:3.11-slim
# Install build tools for llama-cpp-python just in case there are no prebuilt wheels
RUN apt-get update && apt-get install -y build-essential cmake
# Create a non-root user that HuggingFace Spaces requires
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
# Copy requirements and install
COPY --chown=user requirements.txt .
RUN pip install --no-cache-dir --user -r requirements.txt --extra-index-url https://abetlen.github.io/llama-cpp-python/whl/cpu
RUN pip install --no-cache-dir --user uvicorn
# Copy the application code
COPY --chown=user api.py .
COPY --chown=user data/clean/ ./data/clean/
# Expose port 7860 for HuggingFace Spaces
EXPOSE 7860
# Run uvicorn on port 7860
CMD ["uvicorn", "api:app", "--host", "0.0.0.0", "--port", "7860"]
|