Alaudeen commited on
Commit
c2ddfb1
·
verified ·
1 Parent(s): 67873fc

Add Dockerfile for custom deployment

Browse files
Files changed (1) hide show
  1. Dockerfile +26 -0
Dockerfile ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.11-slim
2
+
3
+ WORKDIR /app
4
+
5
+ # Install system dependencies
6
+ RUN apt-get update && apt-get install -y --no-install-recommends \
7
+ gcc \
8
+ g++ \
9
+ && rm -rf /var/lib/apt/lists/*
10
+
11
+ # Copy requirements and install
12
+ COPY requirements.txt .
13
+ RUN pip install --no-cache-dir -r requirements.txt
14
+ RUN pip install --no-cache-dir fastapi uvicorn gradio
15
+
16
+ # Copy application code
17
+ COPY . .
18
+
19
+ # Create output directories
20
+ RUN mkdir -p outputs/models outputs/results outputs/figures
21
+
22
+ # Expose ports for FastAPI (8000) and Gradio (7860)
23
+ EXPOSE 8000 7860
24
+
25
+ # Default command: run both services
26
+ CMD ["sh", "-c", "uvicorn api:app --host 0.0.0.0 --port 8000 & python app.py"]