Skip to content

Docker Multi-stage Build for Tiny Rust Image Deployment

License

Notifications You must be signed in to change notification settings

numq/dockerize-rust

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dockerize Rust

Docker Multi-stage Build for Tiny Rust Image Deployment based on linux musl.

*Multi-stage - this is a way to reduce an image size creating an empty image and copying the binary file into it.

  • First stage
    • Create a new image
    • Install dependencies
    • Build binaries
  • Second stage
    • Create a new image
    • Copy binaries
    • Launch

Run:

docker compose up [OPTIONS] [SERVICE...]