llm-agent-api / Dockerfile
caiocampos-hotmart
chore: improve logs
fcba0d8
raw
history blame contribute delete
507 Bytes
FROM python:3.9
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
# Otimizações para HF Spaces
ENV CMAKE_ARGS="-DLLAMA_BLAS=ON -DLLAMA_BLAS_VENDOR=OpenBLAS"
ENV FORCE_CMAKE=1
# Forçar logs em tempo real
ENV PYTHONUNBUFFERED=1
ENV PYTHONIOENCODING=utf-8
WORKDIR /app
COPY --chown=user ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
COPY --chown=user . /app
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]