locus-rag-bot / Dockerfile
khagu's picture
Changed app_port to 7860 and cleaned up the YAML metadata
4b1a0a9
raw
history blame contribute delete
402 Bytes
FROM python:3.13-slim
WORKDIR /app
RUN apt-get update && apt-get install -y \
build-essential \
curl \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
ENV PINECONE_API_KEY=""
ENV PINECONE_INDEX_NAME="locus-rag"
ENV MISTRAL_API_KEY=""
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]