Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
|
@@ -5,5 +5,6 @@ ENV PORT 7860
|
|
| 5 |
WORKDIR /app
|
| 6 |
COPY requirements.txt .
|
| 7 |
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
| 8 |
COPY app.py .
|
| 9 |
CMD exec gunicorn --bind 0.0.0.0:$PORT --workers 1 --timeout 120 app:app
|
|
|
|
| 5 |
WORKDIR /app
|
| 6 |
COPY requirements.txt .
|
| 7 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 8 |
+
COPY index.html .
|
| 9 |
COPY app.py .
|
| 10 |
CMD exec gunicorn --bind 0.0.0.0:$PORT --workers 1 --timeout 120 app:app
|