pst/Dockerfile

8 lines
169 B
Docker
Raw Normal View History

2024-10-18 18:42:33 +02:00
FROM python:3.10-slim
RUN pip install --upgrade pip \
&& pip install jupyter notebook
CMD ["jupyter", "notebook", "--ip=0.0.0.0", "--allow-root", "--no-browser"]