We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello like subject
I was wondering if it's possible to use docker images to build for different system (like Electron does)
I'm on OSX atm and I wish to build for Windows and Linux
thankyou!
The text was updated successfully, but these errors were encountered:
It should be possibe to build for linux using docker. But I am not sure if you have docker images for windows ? @gino8080
Sorry, something went wrong.
On electron I can package a window executable using a command like this:
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
Interesting approach actually (using wine to build windows binaries). I ll take a look when I can. Thanks for letting me know.
No branches or pull requests
Hello like subject
I was wondering if it's possible to use docker images to build for different system (like Electron does)
I'm on OSX atm
and I wish to build for Windows and Linux
thankyou!
The text was updated successfully, but these errors were encountered: