See full description below https://github.com/vbalasu/amazonlinux-jupyter
910
Github: https://github.com/vbalasu/amazonlinux-jupyter
FROM amazonlinux:latest
RUN yum install -y python3 jupyter; pip3 install jupyter
RUN pip3 install bash_kernel; python3 -m bash_kernel.install
WORKDIR /root
CMD jupyter notebook --ip=0.0.0.0 --port=18888 --allow-root
docker build -t vbalasu/amazonlinux-jupyter .
docker run -d --rm -p 18888:18888 vbalasu/amazonlinux-jupyter
echo "To view the Jupyter URL, run the following command: docker logs "
Content type
Image
Digest
Size
171.1 MB
Last updated
over 7 years ago
docker pull vbalasu/amazonlinux-jupyter