Dockerfile.circleci 508 B

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