Dockerfile 530 B

12345678910111213141516171819202122232425
  1. FROM electronbuilds/libchromiumcontent:0.0.4
  2. USER root
  3. # Set up HOME directory
  4. ENV HOME=/home
  5. RUN chmod a+rwx /home
  6. # Install node.js
  7. RUN curl -sL https://deb.nodesource.com/setup_8.x | bash -
  8. RUN apt-get update && apt-get install -y nodejs
  9. # Install wget used by crash reporter
  10. RUN apt-get install -y wget
  11. # Install python-dbusmock
  12. RUN apt-get install -y python-dbusmock
  13. # Install libnotify
  14. RUN apt-get install -y libnotify-bin
  15. # Add xvfb init script
  16. ADD tools/xvfb-init.sh /etc/init.d/xvfb
  17. RUN chmod a+x /etc/init.d/xvfb