Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -24,7 +24,7 @@ RUN mkdir -p /app/cache
|
|
24 |
ENV REQUESTS_CACHE_NAME=/app/cache/citeas_cache
|
25 |
|
26 |
# Expose port
|
27 |
-
EXPOSE
|
28 |
|
29 |
# Start the app
|
30 |
-
CMD ["gunicorn", "--bind", "0.0.0.0:
|
|
|
24 |
ENV REQUESTS_CACHE_NAME=/app/cache/citeas_cache
|
25 |
|
26 |
# Expose port
|
27 |
+
EXPOSE 7860
|
28 |
|
29 |
# Start the app
|
30 |
+
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "views:app", "-w", "3"]
|