8 lines
185 B
Docker
8 lines
185 B
Docker
FROM nbgallery/jupyter-alpine:latest
|
|
|
|
RUN pip install git+https://github.com/kubernetes-client/python.git
|
|
|
|
ENTRYPOINT ["/sbin/tini", "--"]
|
|
CMD ["jupyter", "notebook", "--ip=0.0.0.0"]
|
|
|