jupyter/Program/js/Dockerfile

14 lines
362 B
Docker
Raw Permalink Normal View History

2024-12-25 16:31:30 +08:00
FROM eoelab.org:1027/eoeair/jupyter:py-c
2024-10-02 12:11:34 +08:00
USER root
RUN apt-get update --yes && apt-get install --no-install-recommends --yes nodejs npm && \
2024-10-02 12:11:34 +08:00
apt-get clean && rm -rf /var/lib/apt/lists/* && \
npm config set registry https://registry.npmmirror.com && \
npm install -g --unsafe-perm ijavascript && \
ijsinstall --install=global
USER ${NB_UID}