Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -5,8 +5,8 @@ WORKDIR /app
|
|
| 5 |
COPY . /app
|
| 6 |
|
| 7 |
RUN pip install --upgrade pip
|
| 8 |
-
RUN pip install -r
|
| 9 |
|
| 10 |
EXPOSE 7860
|
| 11 |
|
| 12 |
-
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "
|
|
|
|
| 5 |
COPY . /app
|
| 6 |
|
| 7 |
RUN pip install --upgrade pip
|
| 8 |
+
RUN pip install -r requirements.txt
|
| 9 |
|
| 10 |
EXPOSE 7860
|
| 11 |
|
| 12 |
+
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "app:app"]
|