Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -30,7 +30,7 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 30 |
COPY ./backend .
|
| 31 |
|
| 32 |
# Tell the container to expose port 8080 for web traffic
|
| 33 |
-
EXPOSE
|
| 34 |
|
| 35 |
# The command to run when the container starts
|
| 36 |
-
CMD ["gunicorn", "--bind", "0.0.0.0:
|
|
|
|
| 30 |
COPY ./backend .
|
| 31 |
|
| 32 |
# Tell the container to expose port 8080 for web traffic
|
| 33 |
+
EXPOSE 8081
|
| 34 |
|
| 35 |
# The command to run when the container starts
|
| 36 |
+
CMD ["gunicorn", "--bind", "0.0.0.0:8081", "app:app"]
|