gw-bin 0.4.2

Watch git repositories, pull changes and run commands on the new files
Documentation
1
2
3
4
5
6
7
8
9
10
# This image is only for CI to avoid the very slow QEMU compilation
FROM alpine:3.22

RUN apk add --no-cache \
        ca-certificates

# Use the previously built binary artifact
COPY target/arm-unknown-linux-gnueabihf/release/gw /usr/bin/gw

ENTRYPOINT ["/usr/bin/gw"]