https://github.com/harryscholes/rust-scratch-docker
Rust scratch Docker images
https://github.com/harryscholes/rust-scratch-docker
Last synced: 28 days ago
JSON representation
Rust scratch Docker images
- Host: GitHub
- URL: https://github.com/harryscholes/rust-scratch-docker
- Owner: harryscholes
- Created: 2023-05-29T13:08:21.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-05-29T13:09:23.000Z (about 2 years ago)
- Last Synced: 2025-04-06T11:47:02.395Z (2 months ago)
- Language: Dockerfile
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rust scratch Docker images
```console
$ ❯ cat binary/src/main.rs
fn main() {
println!("Hello, world!");
}$ docker build -t rust-docker-scratch . > /dev/null 2>&1
$ docker run rust-docker-scratch
Hello, world!
```