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
|
|
|
|
|
2025-01-20 02:47:57 +08:00
|
|
|
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}
|
|
|
|
|
|
|
|
|