File tree Expand file tree Collapse file tree 3 files changed +0
-9
lines changed Expand file tree Collapse file tree 3 files changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -15,12 +15,6 @@ COPY ./app/pyproject.toml ./app/poetry.lock* /app/
15
15
ARG INSTALL_DEV=false
16
16
RUN bash -c "if [ $INSTALL_DEV == 'true' ] ; then poetry install --no-root ; else poetry install --no-root --no-dev ; fi"
17
17
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
-
24
18
COPY ./app /app
25
19
ENV PYTHONPATH=/app
26
20
Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ isort = "^4.3.21"
32
32
autoflake = " ^1.3.1"
33
33
flake8 = " ^3.7.9"
34
34
pytest = " ^5.4.1"
35
- jupyter = " ^1.0.0"
36
35
vulture = " ^1.4"
37
36
38
37
[build-system ]
Original file line number Diff line number Diff line change @@ -5,10 +5,8 @@ services:
5
5
context : ./backend
6
6
args :
7
7
INSTALL_DEV : ${INSTALL_DEV-true}
8
- INSTALL_JUPYTER : ${INSTALL_JUPYTER-true}
9
8
command : /start-reload.sh
10
9
environment :
11
- - ' JUPYTER=jupyter notebook --ip=0.0.0.0 --allow-root'
12
10
- SERVER_NAME=${DOMAIN}
13
11
- SERVER_HOST=http://${DOMAIN}
14
12
networks :
You can’t perform that action at this time.
0 commit comments