Spaces:
Build error
Build error
| FROM python:3.9 | |
| RUN useradd -m -u 1000 user | |
| USER user | |
| WORKDIR /app | |
| # Install Ollama | |
| RUN curl -fsSL https://ollama.com/install.sh | sh | |
| # Install other dependencies (if needed) | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir --upgrade -r requirements.txt | |
| COPY . /app | |
| EXPOSE 7860 | |
| ENTRYPOINT ["/app/entrypoint.sh"] |