jupyter/Math/scilab/Dockerfile
2025-02-20 21:41:34 +08:00

16 lines
364 B
Docker

FROM eoelab.org:1027/eoeair/jupyter:py-c
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 && \
python -m scilab_kernel install --prefix /opt/base/ && \
pip cache purge