Saibotk
011f0c5981
Since v6.10.2 this is a runtime dependency, see https://github.com/ansible/ansible-lint/pull/2860
9 lines
242 B
Docker
9 lines
242 B
Docker
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]"
|