Skip to content

Latest commit

History

History
15 lines (11 loc) 路 503 Bytes

README.md

File metadata and controls

15 lines (11 loc) 路 503 Bytes

A Docker image based on Ubuntu that contains MinGW, rustup, Rust, Cargo and Wine. Based on the official Rust image and automatically updated when the rust image is updated.

Cargo is able to build and run binaries for the x86_86-pc-windows-gnu and i686-pc-windows-gnu targets.

Example

docker pull tomaka/rust-mingw-docker

docker run --rm -it -v `pwd`:/usr/code -w /usr/code tomaka/rust-mingw-docker
cargo test --target x86_86-pc-windows-gnu
cargo test --target i686-pc-windows-gnu