From 9c57fdada58ab3e9021ded84907e8811355124b5 Mon Sep 17 00:00:00 2001 From: Ludovic Poujol Date: Tue, 27 Dec 2022 16:57:23 +0100 Subject: [PATCH] ansible-lint: use pip version --- ansible-lint/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ansible-lint/Dockerfile b/ansible-lint/Dockerfile index 0c0ed43..36ac076 100644 --- a/ansible-lint/Dockerfile +++ b/ansible-lint/Dockerfile @@ -2,5 +2,8 @@ FROM debian:bullseye-slim RUN apt-get update \ && apt-get install -y --no-install-recommends \ - ansible-lint \ + python3-pip git \ && rm -rf /var/lib/apt/lists/* + +RUN pip3 install ansible-lint +