Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 604 Bytes

INSTALL.md

File metadata and controls

33 lines (23 loc) · 604 Bytes

Building Rash

rash is a project written in Rust in its entirety and can be built directly with cargo tool.

Build requirements

The following tools are needed:

  • docker
  • make
  • rustc
  • cargo

Build

You can build rash images with the binary inside by simply running the command below.

make images

Developers may often wish to make only one image or just test it in local. You can do one of both:

# docker image
DOCKERFILES=Dockerfile make images

# binary
make build
echo rash binary is under ${CARGO_TARGET_DIR}/release/rash