Spaces:
Runtime error
Runtime error
Commit
·
3d26a3c
1
Parent(s):
0425f4c
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -4,5 +4,5 @@ WORKDIR /app
|
|
4 |
COPY requirements.txt /app/requirements.txt
|
5 |
RUN pip install -r requirements.txt
|
6 |
COPY . /app/
|
7 |
-
EXPOSE
|
8 |
-
CMD ["python",
|
|
|
4 |
COPY requirements.txt /app/requirements.txt
|
5 |
RUN pip install -r requirements.txt
|
6 |
COPY . /app/
|
7 |
+
EXPOSE 7680
|
8 |
+
CMD ["python", "app.py", "--address", "0.0.0.0", "--port", "7680", "--allow-websocket-origin", "mattritchey-dash_docker.hf.space"]
|