ai-textbook-backend / Dockerfile
AI Development Team
feat: Add dynamic auth navbar with user profile dropdown
adf2769
Raw
History Blame Contribute Delete
630 Bytes
FROM python:3.11-slim
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
gcc \
g++ \
libpq-dev \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements first to leverage Docker cache
COPY requirements.txt .
# Install Python dependencies
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r requirements.txt
# Copy the rest of the application
COPY . .
# Expose the port the app runs on (HuggingFace uses 7860)
EXPOSE 7860
# Run the application on port 7860 for HuggingFace Spaces
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]