RAG_Demo / Dockerfile
jchen8000's picture
Upload 3 files
617629f verified
raw
history blame contribute delete
458 Bytes
# Use an official lightweight Python image
FROM python:3.12-slim
# Set working directory inside the container
WORKDIR /app
# Set the Hugging Face cache directory to /tmp, which is writable
ENV HF_HOME="/tmp"
# Copy requirements and install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of the app
COPY . .
# Expose Gradio's default port
EXPOSE 7860
# Run the app
CMD ["python", "-u", "app.py"]