Spaces:
Build error
Build error
File size: 1,099 Bytes
06f9f74 2df4758 06f9f74 2df4758 06f9f74 2df4758 06f9f74 2df4758 06f9f74 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | # Multi-stage Dockerfile for Hugging Face Spaces
# Single container: FastAPI serves React static files directly
# Stage 1: Build React frontend
FROM node:20-alpine AS frontend-build
WORKDIR /frontend
COPY frontend/package*.json ./
RUN npm ci
COPY frontend/ ./
RUN npm run build
# Stage 2: Python + FastAPI
FROM python:3.11-slim
WORKDIR /app
# Install system dependencies (gcc needed for some Python packages)
RUN apt-get update && apt-get install -y \
gcc \
&& rm -rf /var/lib/apt/lists/*
# Copy and install Python dependencies
COPY backend/requirements.txt ./requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
# Copy backend code
COPY backend ./backend
# Copy built frontend from Node stage (Vite outputs to dist/)
COPY --from=frontend-build /frontend/dist ./frontend/dist
# Create data directory for SQLite database
RUN mkdir -p /app/data
# Hugging Face Spaces expects port 7860
EXPOSE 7860
# Environment variables
ENV PORT=7860
ENV PYTHONUNBUFFERED=1
# Start FastAPI with Uvicorn
CMD ["uvicorn", "backend.app.main:app", "--host", "0.0.0.0", "--port", "7860"]
|