To build and exec manually:
cargo build --release
./target/release/hello_world
To build on Docker, extract binary and exec:
docker build -t gbouv/test-build:latest .
docker cp $(docker container create gbouv/test-build:latest):/app/hello_world ./
./hello_world