File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ ENV pipargs=""
11
11
ENV WORKING_DIR="/root"
12
12
ENV NOTEBOOK_DIR="${WORKING_DIR}/notebooks"
13
13
ENV EXAMPLE_NOTEBOOK_DIR="${NOTEBOOK_DIR}/Example Notebooks"
14
- ENV NODE_VERSION=14
14
+ ENV NODE_VERSION=20.18.3
15
15
ENV PYTHON_VERSION=3.10
16
16
ENV GRAPH_NOTEBOOK_AUTH_MODE="DEFAULT"
17
17
ENV GRAPH_NOTEBOOK_HOST="neptune.cluster-XXXXXXXXXXXX.us-east-1.neptune.amazonaws.com"
@@ -57,9 +57,10 @@ RUN mkdir -p "${WORKING_DIR}" && \
57
57
pip3 install --upgrade pip setuptools wheel && \
58
58
pip3 install twine==3.7.1 && \
59
59
pip3 install -r requirements.txt && \
60
- pip3 install "jupyterlab>=3,<4" && \
60
+ pip3 install "jupyterlab>=4.3.5,<5" && \
61
+ pip3 install --upgrade build hatch hatch-jupyter-builder && \
61
62
# Build the package
62
- python3 setup.py sdist bdist_wheel && \
63
+ python3 -m build . && \
63
64
# install the copied repo
64
65
pip3 install . && \
65
66
# copy premade starter notebooks
You can’t perform that action at this time.
0 commit comments