From 220aedfb2985be55939596a4146d61cb4c34f71a Mon Sep 17 00:00:00 2001 From: Ruinong Tian Date: Mon, 6 May 2024 22:26:41 +0000 Subject: [PATCH] upgrade packages --- build_artifacts/v1/v1.5/v1.5.3/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build_artifacts/v1/v1.5/v1.5.3/Dockerfile b/build_artifacts/v1/v1.5/v1.5.3/Dockerfile index 40a79752..66351db8 100644 --- a/build_artifacts/v1/v1.5/v1.5.3/Dockerfile +++ b/build_artifacts/v1/v1.5/v1.5.3/Dockerfile @@ -25,7 +25,7 @@ RUN usermod "--login=${NB_USER}" "--home=/home/${NB_USER}" --move-home "-u ${NB_ ENV MAMBA_USER=$NB_USER ENV USER=$NB_USER -RUN apt-get update && \ +RUN apt-get update && apt-get upgrade -y &&\ apt-get install -y --no-install-recommends sudo gettext-base wget curl unzip git rsync build-essential openssh-client nano && \ # We just install tzdata below but leave default time zone as UTC. This helps packages like Pandas to function correctly. DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends tzdata krb5-user libkrb5-dev libsasl2-dev libsasl2-modules && \ @@ -60,6 +60,9 @@ RUN micromamba install -y --name base --file /tmp/$ENV_IN_FILENAME && \ ARG MAMBA_DOCKERFILE_ACTIVATE=1 RUN sudo ln -s $(which python3) /usr/bin/python +# Update npm version +RUN npm i -g npm + # Install glue kernels, and move to shared directory # Also patching base kernel so Studio background code doesn't start session silently RUN install-glue-kernels && \