1
0
Fork 0

Add git to container

Since v6.10.2 this is a runtime dependency, 
see https://github.com/ansible/ansible-lint/pull/2860
This commit is contained in:
Saibotk 2023-01-06 16:45:04 +00:00
parent 0a237f5cf3
commit 011f0c5981

View file

@ -1,3 +1,9 @@
FROM docker.io/library/python:3.11-slim
RUN true \
&& apt-get update \
&& apt-get install -y git \
&& apt-get clean && apt-get purge && rm -r /var/lib/apt/lists/* \
&& true
RUN pip install "ansible-lint[community,yamllint]"