Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -117,9 +117,9 @@ RUN jupyter labextension install @krassowski/jupyterlab-lsp
|
|
117 |
|
118 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
119 |
COPY --chown=user . $HOME/app
|
120 |
-
|
121 |
RUN chmod +x start_server.sh
|
122 |
-
|
123 |
COPY --chown=user login.html /home/user/miniconda/lib/python3.9/site-packages/jupyter_server/templates/login.html
|
124 |
|
125 |
ENV PYTHONUNBUFFERED=1 \
|
|
|
117 |
|
118 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
119 |
COPY --chown=user . $HOME/app
|
120 |
+
USER root
|
121 |
RUN chmod +x start_server.sh
|
122 |
+
RUN bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"
|
123 |
COPY --chown=user login.html /home/user/miniconda/lib/python3.9/site-packages/jupyter_server/templates/login.html
|
124 |
|
125 |
ENV PYTHONUNBUFFERED=1 \
|