RAG / Dockerfile
harishvijayasarangan05's picture
Upload 9 files
964d67a verified
raw
history blame contribute delete
448 Bytes
FROM python:3.10-slim
WORKDIR /app
# Copy requirements first for better caching
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of the application
COPY . .
# Create static directory
RUN mkdir -p static
# Set environment variables for HF Spaces
ENV HOST=0.0.0.0
ENV PORT=7860
# Command to run the application
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]