commit 5f05b6994c37262e05e4fe5e3195da2126dc287a Author: Simon Li Date: Wed Sep 25 21:21:11 2019 +0000 diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..00b77cb --- /dev/null +++ b/Dockerfile @@ -0,0 +1,20 @@ +FROM jupyter/base-notebook + +USER root +RUN apt-get update -y -q && \ + apt-get install -y -q \ + curl \ + lxde \ + net-tools \ + novnc \ + tigervnc-standalone-server + + +EXPOSE 8080 +ENTRYPOINT ["bash"] +# https://serverfault.com/questions/376302/tigervnc-ssh-without-a-vnc-password/580859#580859 +# vncserver -verbose -xstartup startlxde -SecurityTypes None -geometry 1024x768 +# /usr/share/novnc/utils/launch.sh --listen 5902 --vnc localhost:5901 + +# In browser go to http://localhost:8080/vnc.html?autoconnect=true +