Skip to content

Instantly share code, notes, and snippets.

@jamzi
Created January 19, 2019 16:02
Show Gist options
  • Save jamzi/aff85aa192b8addab2b560db5d849a2a to your computer and use it in GitHub Desktop.
Save jamzi/aff85aa192b8addab2b560db5d849a2a to your computer and use it in GitHub Desktop.
Electron-builder - Building Windows app on Linux (Docker image)
docker run --rm -ti \
--env-file <(env | grep -iE 'DEBUG|NODE_|ELECTRON_|YARN_|NPM_|CI|CIRCLE|TRAVIS_TAG|TRAVIS|TRAVIS_REPO_|TRAVIS_BUILD_|TRAVIS_BRANCH|TRAVIS_PULL_REQUEST_|APPVEYOR_|CSC_|GH_|GITHUB_|BT_|AWS_|STRIP|BUILD_') \
--env ELECTRON_CACHE="/root/.cache/electron" \
--env ELECTRON_BUILDER_CACHE="/root/.cache/electron-builder" \
-v ${PWD}:/project \
-v ${PWD##*/}-node-modules:/project/node_modules \
-v ~/.cache/electron:/root/.cache/electron \
-v ~/.cache/electron-builder:/root/.cache/electron-builder \
electronuserland/builder:wine
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment