Skip to content

Commit

Permalink
fix(docker): add missing libgconf-2-4 for chromedriver (#2720)
Browse files Browse the repository at this point in the history
chromedriver couldn't start because libgconf-2-4 was missing.
So Spectron also couldn't start Electron apps for testing.
  • Loading branch information
yuya-oc authored and develar committed Mar 20, 2018
1 parent cec3069 commit 0a343f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/wine-chrome/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ FROM electronuserland/builder:wine

RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && \
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list && \
apt-get update -y && apt-get install -y --no-install-recommends xvfb google-chrome-stable && \
apt-get update -y && apt-get install -y --no-install-recommends xvfb google-chrome-stable libgconf-2-4 && \
# clean
apt-get clean && rm -rf /var/lib/apt/lists/*

0 comments on commit 0a343f3

Please sign in to comment.