Skip to content

Commit 354dc5c

Browse files
committed
Remove jupyter.
1 parent f992273 commit 354dc5c

File tree

3 files changed

+0
-9
lines changed

3 files changed

+0
-9
lines changed

backend/Dockerfile

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,6 @@ COPY ./app/pyproject.toml ./app/poetry.lock* /app/
1515
ARG INSTALL_DEV=false
1616
RUN bash -c "if [ $INSTALL_DEV == 'true' ] ; then poetry install --no-root ; else poetry install --no-root --no-dev ; fi"
1717

18-
# For development, Jupyter remote kernel, Hydrogen
19-
# Using inside the container:
20-
# jupyter lab --ip=0.0.0.0 --allow-root --NotebookApp.custom_display_url=http://127.0.0.1:8888
21-
ARG INSTALL_JUPYTER=false
22-
RUN bash -c "if [ $INSTALL_JUPYTER == 'true' ] ; then pip install jupyterlab ; fi"
23-
2418
COPY ./app /app
2519
ENV PYTHONPATH=/app
2620

backend/app/pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ isort = "^4.3.21"
3232
autoflake = "^1.3.1"
3333
flake8 = "^3.7.9"
3434
pytest = "^5.4.1"
35-
jupyter = "^1.0.0"
3635
vulture = "^1.4"
3736

3837
[build-system]

docker-compose.dev.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,8 @@ services:
55
context: ./backend
66
args:
77
INSTALL_DEV: ${INSTALL_DEV-true}
8-
INSTALL_JUPYTER: ${INSTALL_JUPYTER-true}
98
command: /start-reload.sh
109
environment:
11-
- 'JUPYTER=jupyter notebook --ip=0.0.0.0 --allow-root'
1210
- SERVER_NAME=${DOMAIN}
1311
- SERVER_HOST=http://${DOMAIN}
1412
networks:

0 commit comments

Comments
 (0)