File size: 1,309 Bytes
36dd4e6
 
 
 
 
 
 
 
 
 
 
 
c6ecab7
36dd4e6
6020954
36dd4e6
 
 
6020954
 
36dd4e6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c6ecab7
 
36dd4e6
 
 
 
 
 
 
 
 
 
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
50
# FastAPI Dockerfile for Hugging Face Spaces
# Optimized for crop disease detection API deployment

FROM python:3.9-slim

# Set working directory
WORKDIR /app

# Set environment variables
ENV PYTHONPATH="/app"
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
ENV MPLCONFIGDIR=/app/matplotlib_cache

# Install minimal system dependencies for headless OpenCV (required by grad-cam)
RUN apt-get update && apt-get install -y \
    libglib2.0-0 \
    libgomp1 \
    libgl1 \
    libglu1 \
    curl \
    && rm -rf /var/lib/apt/lists/*

# Copy requirements first for better caching
COPY requirements.txt requirements.txt

# Install Python dependencies
RUN pip install --no-cache-dir --upgrade pip && \
    pip install --no-cache-dir -r requirements.txt

# Copy application files
COPY app.py .
COPY src/ ./src/
COPY models/ ./models/
COPY knowledge_base/ ./knowledge_base/
COPY test_leaf_sample.jpg .

# Create necessary directories
RUN mkdir -p outputs temp /app/matplotlib_cache && \
    chmod 777 /app/matplotlib_cache

# Expose the port FastAPI runs on
EXPOSE 7860

# Health check
HEALTHCHECK --interval=30s --timeout=30s --start-period=5s --retries=3 \
    CMD curl -f http://localhost:7860/health || exit 1

# Command to run the FastAPI app
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]