ansible/docker-ansible-lint/Dockerfile
otthorn 83fd1b03e7
All checks were successful
continuous-integration/drone/push Build is passing
🚚 correctly name Dockerfile
2021-02-16 18:44:18 +01:00

8 lines
276 B
Docker

FROM python:3.9-alpine
LABEL description="Aurore's docker image for ansible-lint"
RUN apk add --no-cache gcc musl-dev python3-dev libffi-dev openssl-dev cargo
RUN pip install "yamllint>=1.26.0,<2.0"
RUN pip install "ansible-lint==5.0.0"
RUN pip install "ansible>=2.10,<2.11"