diff --git a/Dockerfile b/Dockerfile index 9558d79..07fefd9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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]"