gitmoji-changelog 0.4.0

Do you use gitmoji? Then generate your changelog with this app!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM clux/muslrust as builder

ENV RUSTFLAGS "-C opt-level=s"
COPY . /volume/
RUN cargo build --release

FROM scratch

WORKDIR /repo

COPY --from=builder /volume/target/x86_64-unknown-linux-musl/release/gitmoji-changelog /gitmoji-changelog

ENTRYPOINT ["/gitmoji-changelog"]
CMD ["/repo"]