crieur/justfile
koalp 48485c3097
Some checks reported errors
continuous-integration/drone/pr Build was killed
continuous-integration/drone/push Build is passing
feat: add a containerfile to build a chatbot image
An image to run crieur-chatbot have been added.
The crieur-chatbot matrix-sdk dependency have been edited in order to
use rustls instead of native tsl library.
2021-04-30 02:14:18 +02:00

20 lines
238 B
Makefile

@build:
cargo build
@clean:
cargo clean
@run:
cargo run
@container:
podman build --file ./containers/chatbot.containerfile -t crieur-chatbot .
@audit:
cargo audit
@crev:
cargo crev verify
@verify: audit crev