16 lines
364 B
Docker
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 |