From d7afad79373f46bf3d0db098691bf0dcd527ca70 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Wed, 13 Apr 2022 17:17:13 +0200 Subject: [PATCH] [ANSIBLE] Update to version 2.10.17 --- Dockerfile.linux.amd64 | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Dockerfile.linux.amd64 b/Dockerfile.linux.amd64 index d31087a..8f0469e 100644 --- a/Dockerfile.linux.amd64 +++ b/Dockerfile.linux.amd64 @@ -1,11 +1,13 @@ # alpine version FROM alpine:3.15 + # software versions -ENV ANSIBLE_VERSION=2.9.27 +ENV ANSIBLE_VERSION=2.10.17 ENV ANSIBLE_LINT_VERSION=6.0.2 ENV YAML_LINT_VERSION=1.26.3 + # install software RUN apk update RUN apk add --no-cache \ @@ -18,11 +20,14 @@ RUN apk add --no-cache \ python3-dev \ py3-pip + # cleanup RUN rm -rf /var/cache/apk/* + # install ansible + linters RUN pip3 install --upgrade pip RUN pip3 install ansible-base==${ANSIBLE_VERSION} RUN pip3 install ansible-lint==${ANSIBLE_LINT_VERSION} RUN pip3 install yamllint==${YAML_LINT_VERSION} +RUN ansible-galaxy install -r requirements.yaml