Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/djmaze/twister-core-windows-docker
Twister core build for Windows using Docker
https://github.com/djmaze/twister-core-windows-docker
Last synced: 27 days ago
JSON representation
Twister core build for Windows using Docker
- Host: GitHub
- URL: https://github.com/djmaze/twister-core-windows-docker
- Owner: djmaze
- Created: 2014-07-12T16:57:42.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-16T08:25:19.000Z (about 10 years ago)
- Last Synced: 2024-12-08T20:41:33.107Z (about 1 month ago)
- Language: Shell
- Size: 215 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This Docker image builds [twisterd](https://github.com/miguelfreitas/twister-core) for Windows (32/64 bit) using the MinGW
compiler on Linux. It uses the (almost unmodified) Gitian build scripts from the [twister-core repository](https://github.com/miguelfreitas/twister-core/).Running the image will copy the compiled files to the `/target` directory inside the container. So you should mount a host directory in
there in order to get them out of the container.## Quickstart
Use the precompiled image from the Docker index:
sudo docker pull mazzolino/twister-core-windows-docker
sudo docker run --rm -v $(pwd)/target:/target mazzolino/twister-core-windows-dockerThe output files will be written to the `target` subdirectory of your current folder.
## Building the image yourself
You can build the container yourself. Please be aware that this will
download and compile all dependencies as well, which can take a long
time (> 1h). Building yourself has the advantage that further builds
will make use of Dockerfile caching. So in future builds, only twister itself will be rebuilt:sudo docker build -t mazzolino/twister-core-windows-docker .
When the build is done, you can run the image just like the pre-built
one (see Quickstart).