1
0
Fork 0
This repository has been archived on 2025-01-13. You can view files and clone it, but cannot push or open issues or pull requests.
infrastructure-ci-container/Dockerfile

10 lines
242 B
Text
Raw Permalink Normal View History

FROM docker.io/library/python:3.13-slim
2021-01-07 18:38:04 +00:00
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]"