9 lines
242 B
Docker
9 lines
242 B
Docker
FROM docker.io/library/python:3.13-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]"
|