Spaces:
Running
Running
Update Dockerfile
Browse files- 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", "
|
|
|
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"]
|