[ANSIBLE] Changed ansible package name
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Simon Cornet 2022-04-13 13:38:00 +02:00
parent 474acc1103
commit 9493f8f35e

View File

@ -18,11 +18,11 @@ RUN apk add --no-cache \
python3-dev \
py3-pip
# cleanup
# cleanup
RUN rm -rf /var/cache/apk/*
# install ansible + linters
RUN pip3 install --upgrade pip
RUN pip3 install ansible==${ANSIBLE_VERSION}
RUN pip3 install ansible-core==${ANSIBLE_VERSION}
RUN pip3 install ansible-lint==${ANSIBLE_LINT_VERSION}
RUN pip3 install yamllint==${YAML_LINT_VERSION}