Update Dockerfile
Browse files- Dockerfile +4 -3
Dockerfile
CHANGED
@@ -11,7 +11,7 @@ RUN add-apt-repository ppa:flexiondotorg/nvtop
|
|
11 |
RUN apt-get upgrade -y
|
12 |
RUN apt-get install -y nvtop
|
13 |
|
14 |
-
RUN curl -sL https://deb.nodesource.com/
|
15 |
RUN apt-get install -y nodejs
|
16 |
# RUN npm install
|
17 |
RUN npm install -g configurable-http-proxy
|
@@ -25,8 +25,9 @@ RUN pip3 install jupyterhub && \
|
|
25 |
pip3 install --upgrade jupyterlab jupyterlab-git && \
|
26 |
pip3 install ipywidgets && \
|
27 |
pip3 install torch torchvision torchaudio && \
|
28 |
-
pip3 install langchain trulens-eval trulens
|
29 |
-
|
|
|
30 |
|
31 |
RUN jupyter contrib nbextension install --user \
|
32 |
jupyter nbextension enable --py widgetsnbextension
|
|
|
11 |
RUN apt-get upgrade -y
|
12 |
RUN apt-get install -y nvtop
|
13 |
|
14 |
+
RUN curl -sL https://deb.nodesource.com/setup_20.x | bash -
|
15 |
RUN apt-get install -y nodejs
|
16 |
# RUN npm install
|
17 |
RUN npm install -g configurable-http-proxy
|
|
|
25 |
pip3 install --upgrade jupyterlab jupyterlab-git && \
|
26 |
pip3 install ipywidgets && \
|
27 |
pip3 install torch torchvision torchaudio && \
|
28 |
+
pip3 install langchain trulens-eval trulens
|
29 |
+
|
30 |
+
RUN jupyter lab build --dev-build=False --minimize=False
|
31 |
|
32 |
RUN jupyter contrib nbextension install --user \
|
33 |
jupyter nbextension enable --py widgetsnbextension
|