| FROM python:3.10-slim | |
| # Install system compilers (Required for llama.cpp) | |
| RUN apt-get update && apt-get install -y build-essential gcc | |
| WORKDIR /code | |
| COPY ./requirements.txt /code/requirements.txt | |
| RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt | |
| COPY ./app /code/app | |
| CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"] |