Rust + Docker: Easy packaging of your applications
Let's first create a simple web app with a health check endpoint by running the commands below.
cargo new rust_docker_app --bin
cd rust_docker_app
cargo add actix-web
touch Dockerfile
So what we've actually done here:
created a new binary crate, ca...
blog.paramako.com2 min read