An open API service indexing awesome lists of open source software.

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

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!
```