File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,25 +13,25 @@ RUN apk --no-cache add \
1313
1414# Install a YAML Linter
1515ARG yamllint_version=1.29.0
16- LABEL yamllint_version =$yamllint_version
16+ LABEL yamllint-version =$yamllint_version
1717RUN pip install "yamllint==$yamllint_version"
1818
1919# Install Yamale YAML schema validator
2020ARG yamale_version=4.0.4
21- LABEL yamale_version =$yamale_version
21+ LABEL yamale-version =$yamale_version
2222RUN pip install "yamale==$yamale_version"
2323
2424ARG TARGETPLATFORM
2525# Install kubectl
2626ARG kubectl_version=v1.26.2
27- LABEL kubectl_version =$kubectl_version
27+ LABEL kubectl-version =$kubectl_version
2828RUN curl -LO "https://storage.googleapis.com/kubernetes-release/release/$kubectl_version/bin/$TARGETPLATFORM/kubectl" && \
2929 chmod +x kubectl && \
3030 mv kubectl /usr/local/bin/
3131
3232# Install Helm
3333ARG helm_version=v3.11.2
34- LABEL helm_version =$helm_version
34+ LABEL helm-version =$helm_version
3535RUN targetArch=$(echo $TARGETPLATFORM | cut -f2 -d '/' ) \
3636 && if [ ${targetArch} = "amd64" ]; then \
3737 HELM_ARCH="linux-amd64" ; \
You can’t perform that action at this time.
0 commit comments