| |
| FROM python:3.12.5-slim |
|
|
|
|
| RUN useradd -m -u 1000 user |
| USER user |
| ENV PATH="/home/user/.local/bin:$PATH" |
|
|
| |
| WORKDIR /app |
|
|
| |
| USER root |
| RUN apt-get update && apt-get install -y --no-install-recommends \ |
| gcc \ |
| g++ \ |
| cmake \ |
| git \ |
| && apt-get clean \ |
| && rm -rf /var/lib/apt/lists/* |
|
|
|
|
| |
| USER user |
|
|
| |
| COPY --chown=user ./requirements.txt requirements.txt |
|
|
| |
| RUN pip install --no-cache-dir -r requirements.txt |
|
|
| |
| COPY --chown=user ./llm.py /app/llm.py |
| COPY --chown=user ./llama-3.2-1b-instruct-q4_k_m.gguf /app/llama-3.2-1b-instruct-q4_k_m.gguf |
|
|
| |
| EXPOSE 7860 |
|
|
| |
| CMD ["uvicorn", "llm:app", "--host", "0.0.0.0", "--port", "7860"] |
|
|