2506minecraft commited on
Commit
b5372e7
·
verified ·
1 Parent(s): dfaf6e5

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -1,6 +1,5 @@
1
  FROM python:3.10-slim
2
 
3
- # تثبيت الاعتمادات النظامية
4
  RUN apt-get update && apt-get install -y ffmpeg
5
 
6
  WORKDIR /app
@@ -10,4 +9,4 @@ RUN pip install --no-cache-dir -r requirements.txt
10
 
11
  COPY . .
12
 
13
- CMD ["gunicorn", "--bind", "0.0.0.0:8080", "--worker-class", "uvicorn.workers.UvicornWorker", "app:app"]
 
1
  FROM python:3.10-slim
2
 
 
3
  RUN apt-get update && apt-get install -y ffmpeg
4
 
5
  WORKDIR /app
 
9
 
10
  COPY . .
11
 
12
+ CMD ["gunicorn", "--bind", "0.0.0.0:8080", "app:app"]