Skip to content

Instantly share code, notes, and snippets.

@djmaze
Last active August 29, 2015 14:04
Show Gist options
  • Save djmaze/f6dc11f6ff99072e9a39 to your computer and use it in GitHub Desktop.
Save djmaze/f6dc11f6ff99072e9a39 to your computer and use it in GitHub Desktop.
Building Twister with Docker and getting the exe out
# 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