https://github.com/jimmycuadra/docker-rust-armv7hf
A Docker image for Rust on the armv7hf architecture.
https://github.com/jimmycuadra/docker-rust-armv7hf
arm armv7 docker docker-image raspberry-pi rust
Last synced: 3 months ago
JSON representation
A Docker image for Rust on the armv7hf architecture.
- Host: GitHub
- URL: https://github.com/jimmycuadra/docker-rust-armv7hf
- Owner: jimmycuadra
- License: mit
- Created: 2017-06-30T13:32:58.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-20T23:47:39.000Z (almost 9 years ago)
- Last Synced: 2025-03-25T00:46:40.636Z (over 1 year ago)
- Topics: arm, armv7, docker, docker-image, raspberry-pi, rust
- Homepage: https://hub.docker.com/r/jimmycuadra/rust-armv7hf/
- Size: 1.95 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-rust-armv7hf
This repository is used to build a Docker image for the Rust programming language and a few supporting tools for the armv7hf architecture, used by the popular Raspberry Pi 3 computer. The image includes `rustc`, `rustdoc`, `cargo`, `git`, SSL certificates, and build essentials, so it should be able to run `cargo build` on most projects out of the box. The path `/source` is a volume where you can mount a Cargo project from the host machine.
For an x86_64 version of this image, see https://github.com/jimmycuadra/docker-rust.
## Usage
The following command will drop you into a Bash shell with the current directory on the host shared. From there you can run `rustc`, `rustdoc`, and `cargo` as you please.
``` bash
docker run -it --rm -v $(pwd):/source jimmycuadra/rust-armv7hf
```