Skip to content

Commit

Permalink
install nodejs using mamba
Browse files Browse the repository at this point in the history
  • Loading branch information
briney committed Dec 3, 2024
1 parent 3b35dbc commit 843b7a0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions jupyterhub/jupyter/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
USER root

# node.js - v20
RUN curl -sL "https://deb.nodesource.com/gpgkey/nodesource.gpg.key" | apt-key add - \
&& echo "deb https://deb.nodesource.com/node_20.x jammy main" > /etc/apt/sources.list.d/nodesource.list \
&& cat /etc/apt/sources.list.d/nodesource.list
# RUN curl -sL "https://deb.nodesource.com/gpgkey/nodesource.gpg.key" | apt-key add - \
# && echo "deb https://deb.nodesource.com/node_20.x jammy main" > /etc/apt/sources.list.d/nodesource.list \
# && cat /etc/apt/sources.list.d/nodesource.list
RUN mamba install --yes -c conda-forge nodejs

# Install all OS dependencies for fully functional notebook server
RUN apt --yes update \
Expand Down

0 comments on commit 843b7a0

Please sign in to comment.