c2g 0.9.0

Turn your chess PGN files into GIFs!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM rust:1.59 as builder

WORKDIR /build

COPY . .

RUN cargo build --release

FROM scratch

COPY --from=builder /build/target/release/c2g /c2g

CMD ["/c2g"]