Last active
August 29, 2015 14:04
-
-
Save djmaze/f6dc11f6ff99072e9a39 to your computer and use it in GitHub Desktop.
Building Twister with Docker and getting the exe out
This file contains hidden or 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
# Inside the twister-core source directory, run: | |
sudo ./twister-on-docker build | |
sudo docker run --rm -v $(pwd):/target --entrypoint /usr/bin/env twister cp /twister-core/twisterd /target | |
# Now twisterd should be there! | |
file twisterd | |
# Alternatively, get the current twisterd from the automatic build: | |
sudo docker pull miguelfreitas/twister | |
sudo docker run --rm -v $(pwd):/target --entrypoint /usr/bin/env miguelfreitas/twister cp /twister-core/twisterd /target | |
file twisterd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment