10 lines
182 B
Docker
10 lines
182 B
Docker
|
FROM python:3.10-slim
|
||
|
|
||
|
RUN pip install --upgrade pip \
|
||
|
&& pip install jupyter notebook
|
||
|
|
||
|
EXPOSE 8888
|
||
|
|
||
|
CMD ["jupyter", "notebook", "--ip=0.0.0.0", "--allow-root", "--no-browser"]
|
||
|
|