9 lines
269 B
Docker
9 lines
269 B
Docker
|
FROM python:slim
|
||
|
|
||
|
ENV TOKEN=''
|
||
|
|
||
|
WORKDIR /notebooks
|
||
|
RUN useradd -d /notebooks python && chown -R python /notebooks && pip install jupyterlab
|
||
|
|
||
|
USER python
|
||
|
CMD [ "jupyter", "lab", "--ip=0.0.0.0", "--NotebookApp.token=''", "--notebook-dir", "/notebooks", "picofumi.ipynb" ]
|