File size: 661 Bytes
c2ddfb1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
FROM python:3.11-slim

WORKDIR /app

# Install system dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
    gcc \
    g++ \
    && rm -rf /var/lib/apt/lists/*

# Copy requirements and install
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install --no-cache-dir fastapi uvicorn gradio

# Copy application code
COPY . .

# Create output directories
RUN mkdir -p outputs/models outputs/results outputs/figures

# Expose ports for FastAPI (8000) and Gradio (7860)
EXPOSE 8000 7860

# Default command: run both services
CMD ["sh", "-c", "uvicorn api:app --host 0.0.0.0 --port 8000 & python app.py"]