jupyter/Math/scilab/Dockerfile

15 lines
303 B
Docker
Raw Normal View History

2024-12-25 16:31:30 +08:00
FROM eoelab.org:1027/eoeair/jupyter:py-c
2024-04-15 22:18:54 +08:00
USER root
ENV SCILAB_EXECUTABLE='scilab-cli'
#install scilab-cli
RUN apt-get update --yes && \
apt-get install --yes scilab-cli && \
apt-get clean && rm -rf /var/lib/apt/lists/*
USER $NB_USER
RUN pip install scilab_kernel && \
pip cache purge