From 574c54929f23bb9157208cbb64ba140688779e55 Mon Sep 17 00:00:00 2001 From: Clayton Parnell Date: Mon, 6 May 2024 15:07:10 -0700 Subject: [PATCH] upgrade packages --- build_artifacts/v1/v1.4/v1.4.4/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build_artifacts/v1/v1.4/v1.4.4/Dockerfile b/build_artifacts/v1/v1.4/v1.4.4/Dockerfile index 100431d4..0a3c5bc9 100644 --- a/build_artifacts/v1/v1.4/v1.4.4/Dockerfile +++ b/build_artifacts/v1/v1.4/v1.4.4/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 && \ # 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 && \