File size: 1,102 Bytes
2166f17 a7f1144 2166f17 060dc2a 2166f17 060dc2a 2166f17 |
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 46 47 48 49 |
FROM python:3.10-slim
WORKDIR /app
# Install system dependencies including Node.js
RUN apt-get update && apt-get install -y \
git \
libgl1 \
libglib2.0-0 \
libsm6 \
libxext6 \
libxrender-dev \
libgomp1 \
curl \
&& curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \
&& apt-get install -y nodejs \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements first for better caching
COPY requirements.txt .
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy frontend files and build
COPY frontend/package*.json frontend/
WORKDIR /app/frontend
RUN npm install
COPY frontend/ .
RUN npm run build
# Copy backend application files
WORKDIR /app
COPY config.py .
COPY model_manager.py .
COPY inference.py .
COPY app.py .
COPY utils/ utils/
# Expose Hugging Face Spaces default port
EXPOSE 7860
# Health check
HEALTHCHECK --interval=30s --timeout=10s --start-period=60s --retries=3 \
CMD python -c "import requests; requests.get('http://localhost:7860/health')"
# Run the FastAPI application
CMD ["python", "app.py"]
|