Spaces:
Build error
Build error
| FROM ghcr.io/abetlen/llama-cpp-python:latest | |
| USER root | |
| WORKDIR /workspace | |
| # Install dependencies for vision | |
| RUN pip install --no-cache-dir \ | |
| gradio \ | |
| huggingface-hub \ | |
| Pillow | |
| COPY app.py . | |
| ENV PYTHONUNBUFFERED=1 \ | |
| GRADIO_SERVER_NAME="0.0.0.0" | |
| CMD ["python", "app.py"] |