[Dockerfile] Fixed yamllint version variable
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Simon Cornet 2023-11-08 17:15:12 +01:00
parent 8813ae0cee
commit 305ff39823

View File

@ -8,7 +8,7 @@ ENV ANSIBLE_VERSION=2.13.11
ENV ANSIBLE_LINT_VERSION=6.22.0 ENV ANSIBLE_LINT_VERSION=6.22.0
# renovate: datasource=pypi depName=yamllint versioning=pep440 # renovate: datasource=pypi depName=yamllint versioning=pep440
ENV YAML_LINT_VERSION=1.32.0 ENV YAMLLINT_VERSION=1.32.0
# install software # install software
RUN apk update RUN apk update
@ -30,7 +30,7 @@ RUN pip3 install --upgrade pip
RUN pip3 install --use-pep517 --ignore-installed \ RUN pip3 install --use-pep517 --ignore-installed \
ansible-core==${ANSIBLE_VERSION} \ ansible-core==${ANSIBLE_VERSION} \
ansible-lint==${ANSIBLE_LINT_VERSION} \ ansible-lint==${ANSIBLE_LINT_VERSION} \
yamllint==${YAML_LINT_VERSION} yamllint==${YAML_INT_VERSION}
# install ansible collections # install ansible collections
RUN ansible-galaxy collection install ansible.posix RUN ansible-galaxy collection install ansible.posix