njain commited on
Commit
b51e24f
·
1 Parent(s): 776d4a0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -5,6 +5,6 @@ RUN /usr/local/bin/python -m pip install --upgrade pip
5
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
6
  RUN python generate_webpanel.py
7
  RUN cat webpanel_ntbk.py
8
- CMD ["gunicorn", "--bind", "0.0.0.0:7860", "--access-logfile", "-", "--error-logfile", "-", "--timeout", "120", "webpanel_ntbk:app"]
9
- #CMD ["panel", "serve", "/code/webpanel_ntbk.py", "--port", "7860", "--address", "0.0.0.0", "--allow-websocket-origin", "*"]
10
 
 
5
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
6
  RUN python generate_webpanel.py
7
  RUN cat webpanel_ntbk.py
8
+ #CMD ["gunicorn", "--bind", "0.0.0.0:7860", "--access-logfile", "-", "--error-logfile", "-", "--timeout", "120", "webpanel_ntbk:app"]
9
+ CMD ["panel", "serve", "/code/webpanel_ntbk.py", "--port", "7860", "--address", "0.0.0.0", "--allow-websocket-origin", "*"]
10