-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* `electronuserland/electron-builder:8` renamed to `electronuserland/builder:8`. 413 MB vs 286 MB. * `electronuserland/electron-builder:6` renamed to `electronuserland/builder:6`. 407 MB vs 282 MB. * `electronuserland/electron-builder:wine` renamed to `electronuserland/builder:wine`. 543 MB vs 380 MB. Please note — Mono was extracted to separate `electronuserland/builder:wine-mono`. Google Chrome for testing is supported now only in the `electronuserland/electron-builder:wine-chrome` (498 MB). Mono is not supported in this image.
- Loading branch information
Showing
33 changed files
with
114 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
FROM electronuserland/electron-builder:base | ||
FROM electronuserland/builder:base | ||
|
||
# https://github.com/npm/npm/issues/4531 | ||
RUN curl -sL https://deb.nodesource.com/setup_6.x | bash - && apt-get install -y nodejs && npm config set unsafe-perm true && apt-get clean && rm -rf /var/lib/apt/lists/* | ||
RUN curl -sL https://deb.nodesource.com/setup_6.x | bash - && apt-get install -y nodejs && \ | ||
# https://github.com/npm/npm/issues/4531 | ||
npm config set unsafe-perm true && \ | ||
# clean | ||
apt-get clean && rm -rf /var/lib/apt/lists/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
FROM electronuserland/electron-builder:base | ||
FROM electronuserland/builder:base | ||
|
||
# https://github.com/npm/npm/issues/4531 | ||
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - && apt-get install -y nodejs && npm config set unsafe-perm true && apt-get clean && rm -rf /var/lib/apt/lists/* | ||
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - && apt-get install -y nodejs && \ | ||
# https://github.com/npm/npm/issues/4531 | ||
npm config set unsafe-perm true && \ | ||
# clean | ||
apt-get clean && rm -rf /var/lib/apt/lists/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
|
||
docker build -t electronuserland/electron-builder:base docker/base | ||
docker build -t electronuserland/builder:base docker/base | ||
|
||
docker build -t electronuserland/electron-builder:8 -t electronuserland/electron-builder:latest docker/8 | ||
docker build -t electronuserland/electron-builder:6 docker/6 | ||
docker build -t electronuserland/builder:8 -t electronuserland/builder:latest docker/8 | ||
docker build -t electronuserland/builder:6 docker/6 | ||
|
||
docker build -t electronuserland/electron-builder:wine docker/wine | ||
docker build -t electronuserland/builder:wine docker/wine | ||
docker build -t electronuserland/builder:wine-mono docker/wine-mono | ||
docker build -t electronuserland/builder:wine-chrome docker/wine-chrome |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
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 && \ | ||
# clean | ||
apt-get clean && rm -rf /var/lib/apt/lists/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FROM electronuserland/builder:wine | ||
|
||
# since mono is required only for deprecated target Squirrel.Windows, extracted to separate docker image to reduce size | ||
|
||
RUN apt-get update -y && \ | ||
apt-get install -y --no-install-recommends mono-devel ca-certificates-mono && \ | ||
apt-get clean && rm -rf /var/lib/apt/lists/* |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.