AryanSingh04 commited on
Commit
223963f
·
verified ·
1 Parent(s): a586772

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +13 -0
Dockerfile ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10-slim
2
+
3
+ # Install system dependencies
4
+ RUN apt-get update && apt-get install -y ffmpeg git && rm -rf /var/lib/apt/lists/*
5
+
6
+ # Copy files
7
+ COPY requirements.txt requirements.txt
8
+ RUN pip install --no-cache-dir -r requirements.txt
9
+
10
+ COPY app.py app.py
11
+
12
+ # Run Flask app
13
+ CMD ["python", "app.py"]