Opera8 commited on
Commit
c18cef4
·
verified ·
1 Parent(s): 7e563cb

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -3
Dockerfile CHANGED
@@ -1,8 +1,9 @@
1
  FROM python:3.9-slim
2
- WORKDIR /app
3
 
4
- # نصب ffmpeg برای پردازش‌های صوتی و ویدیویی
5
- RUN apt-get update && apt-get install -y ffmpeg libsm6 libxext6 && rm -rf /var/lib/apt/lists/*
 
 
6
 
7
  COPY requirements.txt .
8
  RUN pip install --no-cache-dir -r requirements.txt
 
1
  FROM python:3.9-slim
 
2
 
3
+ # نصب ابزار کاربردی ffmpeg و وابستگی‌ها برای پردازش صوتی تصویری
4
+ RUN apt-get update && apt-get install -y ffmpeg && rm -rf /var/lib/apt/lists/*
5
+
6
+ WORKDIR /app
7
 
8
  COPY requirements.txt .
9
  RUN pip install --no-cache-dir -r requirements.txt