gitwatch-rs 0.1.1

CLI to watch a git repo and automatically commit changes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM rust:1.82 as builder
WORKDIR /src

# RUN  --mount=type=cache,target=/var/cache/apk,sharing=locked \
#     apk update \
#     && apk add --no-cache musl-dev openssl-dev libgit2-dev pkgconfig  zlib-dev

COPY . .
RUN cargo install --path .

FROM rust:1.82-slim
LABEL maintainer="jan.moeller0@pm.me"

COPY --from=builder /usr/local/cargo/bin/gitwatch /usr/local/bin/gitwatch

ENTRYPOINT [ "gitwatch" ]