evodocker/ansible-lint/Dockerfile

10 lines
196 B
Docker
Raw Normal View History

2022-12-27 15:42:12 +01:00
FROM debian:bullseye-slim
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
2022-12-27 16:57:23 +01:00
python3-pip git \
2022-12-27 15:42:12 +01:00
&& rm -rf /var/lib/apt/lists/*
2022-12-27 16:57:23 +01:00
2022-12-27 17:26:06 +01:00
RUN pip3 install ansible-lint==6.6.1
2022-12-27 16:57:23 +01:00