We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b417d11 commit fe13d37Copy full SHA for fe13d37
tests/Dockerfile
@@ -54,6 +54,11 @@ RUN curl -LOs "https://github.com/mikefarah/yq/releases/download/v${YQ_VERSION}/
54
install -Tm 755 yq_linux_amd64 /usr/local/bin/yq4 && \
55
rm yq_linux_amd64
56
57
+ENV YAJSV_VERSION "1.4.1"
58
+RUN curl -LOs "https://github.com/neilpa/yajsv/releases/download/v${YAJSV_VERSION}/yajsv.linux.amd64" && \
59
+ install -Tm 755 yajsv.linux.amd64 /usr/local/bin/yq4 && \
60
+ rm yajsv.linux.amd64
61
+
62
# Match user between container and host
63
64
ARG UID=1000
0 commit comments