ekjotsingh commited on
Commit
5fb774e
·
verified ·
1 Parent(s): aa3cb06

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +19 -0
Dockerfile ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10-slim
2
+
3
+ WORKDIR /app
4
+
5
+ # Install system dependencies (ffmpeg is required for Whisper)
6
+ RUN apt-get update && apt-get install -y ffmpeg git
7
+
8
+ # Install Python dependencies
9
+ COPY requirements.txt .
10
+ RUN pip install --no-cache-dir -r requirements.txt
11
+
12
+ # Copy application code
13
+ COPY . .
14
+
15
+ # Expose the port
16
+ EXPOSE 7860
17
+
18
+ # Run the API
19
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]