ciq_rag_gradio / Dockerfile
khushininebit's picture
Update Dockerfile
f74ae1a verified
raw
history blame contribute delete
384 Bytes
FROM python:3.11-slim
# Install system dependencies
RUN apt-get update && apt-get install -y \
git \
ffmpeg \
libsm6 \
libxext6 \
&& rm -rf /var/lib/apt/lists/*
# Set working directory
WORKDIR /app
# Copy your app files
COPY . /app
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Run the Gradio app
CMD ["python", "app.py"]