2506minecraft commited on
Commit
5a4222b
·
verified ·
1 Parent(s): 30f2ad0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -5,8 +5,8 @@ RUN apt-get update && apt-get install -y ffmpeg
5
  WORKDIR /app
6
 
7
  COPY requirements.txt .
8
- RUN pip install --no-cache-dir -r requirements.txt
9
 
10
  COPY . .
11
 
12
- CMD ["gunicorn", "--bind", "0.0.0.0:8080", "--worker-class", "uvicorn.workers.UvicornWorker", "app:app"]
 
5
  WORKDIR /app
6
 
7
  COPY requirements.txt .
8
+ RUN pip install --no-cache-dir -r requirements.txt --upgrade
9
 
10
  COPY . .
11
 
12
+ CMD ["gunicorn", "--bind", "0.0.0.0:8080", "app:app"]