Browse Source

Fix CI for Linux

John Kleinschmidt 7 years ago
parent
commit
56233054ae
2 changed files with 7 additions and 6 deletions
  1. 7 1
      Dockerfile
  2. 0 5
      script/cibuild-linux

+ 7 - 1
Dockerfile

@@ -1,4 +1,10 @@
-FROM libchromiumcontent-linux:latest
+FROM electronbuilds/libchromiumcontent:0.0.4
+
+USER root
+
+# Set up HOME directory
+ENV HOME=/home
+RUN chmod a+rwx /home
 
 # Install node.js
 RUN curl -sL https://deb.nodesource.com/setup_6.x | bash -

+ 0 - 5
script/cibuild-linux

@@ -18,11 +18,6 @@ set -o pipefail
 git submodule sync --recursive
 git submodule update --init --recursive
 
-docker build \
-  --force-rm \
-  --tag libchromiumcontent-linux \
-  ./vendor/libchromiumcontent
-
 docker build \
   --force-rm \
   --tag electron-linux \