todo-ci 0.3.0

A simple CI/CD CLI tool for registering and checking todos in code with deadlines
Documentation
FROM rust:1.64 AS builder
COPY . .
RUN cargo build --release

FROM gcr.io/distroless/cc
COPY --from=builder ./target/release/todo-ci ./target/release/todo-ci

LABEL org.opencontainers.image.source=https://github.com/aliadnani/todo-ci
LABEL org.opencontainers.image.licenses=MIT

ENTRYPOINT  ["/target/release/todo-ci"]