We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed3f067 commit 2563740Copy full SHA for 2563740
images/test-runner/rootfs/Dockerfile
@@ -120,7 +120,10 @@ RUN wget -qO /tmp/helm.tgz \
120
&& rm -rf /tmp/*
121
122
# Install a YAML Linter
123
-RUN pip install --user "yamllint==$YAML_LINT_VERSION"
+# Pip not working. Check PR https://github.com/kubernetes/ingress-nginx/pull/10874
124
+# RUN pip install --user "yamllint==$YAML_LINT_VERSION"
125
+RUN apk update -U \
126
+ apk add yamllint
127
128
# Install Yamale YAML schema validator
129
RUN pip install --user "yamale==$YAMALE_VERSION"
0 commit comments