Initial commit.

This commit is contained in:
2025-12-10 21:09:25 +00:00
commit 9d4de0e6b6
73 changed files with 15219 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM alpine:3.19
RUN apk add --no-cache ca-certificates tzdata git
COPY git-velocity /usr/local/bin/git-velocity
COPY config.example.yaml /etc/git-velocity/config.example.yaml
RUN chmod +x /usr/local/bin/git-velocity
ENTRYPOINT ["/usr/local/bin/git-velocity"]
CMD ["--help"]