From 9493f8f35e598752d53ad9bb61df6c9e92e805e3 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Wed, 13 Apr 2022 13:38:00 +0200 Subject: [PATCH] [ANSIBLE] Changed ansible package name --- Dockerfile.linux.amd64 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.linux.amd64 b/Dockerfile.linux.amd64 index fe6c814..b1a4e81 100644 --- a/Dockerfile.linux.amd64 +++ b/Dockerfile.linux.amd64 @@ -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}