feat: add plugin code, dockerfile, and docs

This commit is contained in:
2026-05-07 16:24:25 +06:00
commit 08a587b336
5 changed files with 90 additions and 0 deletions

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
ARG YQVERSION=4.48.1
FROM mikefarah/yq:${YQVERSION}
COPY --link --chmod=755 YqTransformer.sh /usr/local/bin/YqTransformer.sh
USER root
RUN apk add --no-cache bash
USER 1000
ENTRYPOINT ["/usr/local/bin/YqTransformer.sh"]