Skip to content

Release Building

Direct Build

just release_frontend
cargo build --release --bin trufotbot

Your output binary is now in target/release/trufotbot. It's a self-contained binary.

Docker Build

Docker builds are entirely containerized, meaning that your local build system should not affect them. They take longer as a result, but some caching is performed for subsequent builds.

docker build . -t trufotbot:latest

To run this build, use the same docker-compose.yml from Getting started, but use image: trufotbot:latest.