jupyter/scilab/Dockerfile

16 lines
349 B
Docker

FROM ben0i0d/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