Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -12,4 +12,4 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
|
12 |
COPY --chown=user . /app
|
13 |
# CMD ["uvicorn", "app.jupyter.jupyter_server:app", "--host", "0.0.0.0", "--port", "7860"]
|
14 |
# CMD ["pwd", "&&", "gunicorn", "-w", "1", "-b", "0.0.0.0:7860", "jupyter.jupyter_server:app"]
|
15 |
-
CMD cd jupyter && gunicorn -w 1 -b 0.0.0.0:7860
|
|
|
12 |
COPY --chown=user . /app
|
13 |
# CMD ["uvicorn", "app.jupyter.jupyter_server:app", "--host", "0.0.0.0", "--port", "7860"]
|
14 |
# CMD ["pwd", "&&", "gunicorn", "-w", "1", "-b", "0.0.0.0:7860", "jupyter.jupyter_server:app"]
|
15 |
+
CMD cd jupyter && gunicorn -w 1 -b 0.0.0.0:7860 jupyter_kernel:app
|