2017-09-13 13:48:19 +00:00
|
|
|
FROM electronbuilds/libchromiumcontent:0.0.4
|
|
|
|
|
|
|
|
USER root
|
|
|
|
|
|
|
|
# Install node.js
|
2018-03-19 14:19:32 +00:00
|
|
|
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash -
|
2017-12-05 20:01:01 +00:00
|
|
|
RUN apt-get update && apt-get install -y nodejs
|
2017-09-13 13:48:19 +00:00
|
|
|
|
|
|
|
# Install wget used by crash reporter
|
2017-12-05 20:01:01 +00:00
|
|
|
RUN apt-get install -y wget
|
|
|
|
|
|
|
|
# Install python-dbusmock
|
|
|
|
RUN apt-get install -y python-dbusmock
|
2017-09-13 13:48:19 +00:00
|
|
|
|
2018-03-09 03:07:50 +00:00
|
|
|
# Install libnotify
|
|
|
|
RUN apt-get install -y libnotify-bin
|
|
|
|
|
2017-09-13 13:48:19 +00:00
|
|
|
# Add xvfb init script
|
|
|
|
ADD tools/xvfb-init.sh /etc/init.d/xvfb
|
|
|
|
RUN chmod a+x /etc/init.d/xvfb
|
|
|
|
|
|
|
|
USER builduser
|
|
|
|
WORKDIR /home/builduser
|