From de861874ece46cfccb24c7be63d85d5998ed81df Mon Sep 17 00:00:00 2001 From: Emma Ai Date: Mon, 5 Aug 2024 08:16:47 +0000 Subject: [PATCH] note the gotchas --- docker/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 2000afc..1f3fcbc 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -37,7 +37,8 @@ ENV LC_ALL=C.UTF-8 \ USER $nb_user -# NOTE - JupyterLab extensions can now be distributed as prebuilt extensions and available to PyPI +# NOTE - Install lab extension from pypi NOT here. +# Leave the layer here for potential disable/enable and non-working check RUN echo "Enable jupyter lab extensions" \ && jupyter labextension list \ && echo "...done" @@ -49,6 +50,7 @@ RUN echo "Enable server extensions" \ && jupyter lab build \ && echo "...done" +# Install from unzip instead of conda as conda version is not the tool but an "invoker" RUN echo "Install AWS CLI v2" \ && curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "/tmp/awscliv2.zip" \ && unzip /tmp/awscliv2.zip -d /tmp > /dev/null \