| 123456789101112131415 | FROM ubuntu:18.04RUN apt-get update && apt-get install --yes --no-install-recommends \    firefox \    ratpoison `# window manager` \    x11vnc \    xvfbRUN useradd --create-home vncCOPY --chown=vnc xinitrc /home/vnc/.xinitrcCOPY --chown=vnc ratpoisonrc /home/vnc/.ratpoisonrcUSER vncEXPOSE 5900/tcpENV X11VNC_CREATE_GEOM 1920x1080CMD ["x11vnc", "-create", "-nopw", "-no6"]
 |