Skip to content

Commit

Permalink
Update Dockerfile to install npm and node.js
Browse files Browse the repository at this point in the history
  • Loading branch information
sepehrkrz committed Mar 6, 2024
1 parent 69d3fbd commit 6d7f610
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# and linked from here:
# https://github.com/2i2c-org/infrastructure/issues/1444#issuecomment-1187405324

FROM pangeo/pangeo-notebook:2023.01.13
FROM pangeo/pangeo-notebook:2023.09.11

USER root
ENV DEBIAN_FRONTEND=noninteractive
Expand All @@ -14,6 +14,10 @@ RUN apt-get update -qq --yes > /dev/null && \
apt-get install --yes -qq gnupg2 > /dev/null && \
rm -rf /var/lib/apt/lists/*

# Install Node.js and npm
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash - \
&& apt-get install -y nodejs

RUN apt-get -y update \
&& apt-get install -y dbus-x11 \
firefox \
Expand Down

0 comments on commit 6d7f610

Please sign in to comment.