Explainer_Docker / Dockerfile
StanDataCamp's picture
Deploy Dockerized AI Concept Explainer to HF Spaces
6d8f225
raw
history blame contribute delete
469 Bytes
# Use Python 3.11 slim image for smaller size
FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Set environment variables
ENV PYTHONUNBUFFERED=1 \
PYTHONDONTWRITEBYTECODE=1
# Copy requirements first for better caching
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy application files
COPY app.py .
# Expose the port Gradio runs on
EXPOSE 7860
# Run the application
CMD ["python", "app.py"]