burask commited on
Commit
9002506
·
verified ·
1 Parent(s): b19a822

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -4
Dockerfile CHANGED
@@ -1,8 +1,7 @@
1
  FROM python:3.10
2
 
3
- # Sistem bağımlılıklarını yükle
4
- COPY apt.txt /app/apt.txt
5
- RUN apt-get update && xargs -a /app/apt.txt apt-get install -y
6
 
7
  # Cache klasörü oluştur
8
  RUN mkdir -p /app/cache
@@ -21,4 +20,3 @@ WORKDIR /app
21
 
22
  # Flask'ı çalıştır
23
  CMD ["python", "app.py"]
24
-
 
1
  FROM python:3.10
2
 
3
+ # Sistem bağımlılıklarını yükle (ffmpeg)
4
+ RUN apt-get update && apt-get install -y ffmpeg
 
5
 
6
  # Cache klasörü oluştur
7
  RUN mkdir -p /app/cache
 
20
 
21
  # Flask'ı çalıştır
22
  CMD ["python", "app.py"]