pst/Dockerfile

8 lines
169 B
Docker

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"]