Dockerfile 629 B

1234567891011121314151617181920212223242526272829
  1. # At some point maybe add variables to control size of screen.
  2. FROM ubuntu:bionic
  3. RUN apt-get --yes update && apt-get --yes install --no-install-recommends \
  4. bzip2 \
  5. fonts-droid-fallback \
  6. fonts-noto \
  7. icedtea-8-plugin \
  8. libdbus-glib-1-2 \
  9. libgtk-3-0 \
  10. ratpoison \
  11. tightvncserver \
  12. xfonts-base \
  13. x11-xserver-utils \
  14. xterm
  15. COPY startup.sh ratpoisonrc waterfox*.tar.bz2 /
  16. RUN set -x; \
  17. tar -C /usr/local -xf /waterfox*.tar.bz2 && \
  18. rm -f /waterfox*.tar.bz2 && \
  19. ln -s /usr/local/waterfox/waterfox /usr/local/bin
  20. COPY menu /root/.icewm/
  21. CMD ["/startup.sh"]
  22. EXPOSE 5900