Skip to content

Latest commit

 

History

History
24 lines (13 loc) · 231 Bytes

README.md

File metadata and controls

24 lines (13 loc) · 231 Bytes

medium-rust-dockerize

# Build local
cargo build

# Run local
cargo run 
# Build container
docker build -t rust-web-alpine .

# Run container
docker run --rm -p 3030:3030 --name server rust-web-alpine