ansible-lint/Dockerfile
Julien Cabillot 8250124898 Add new file
2019-02-13 22:44:56 +00:00

7 lines
252 B
Docker

FROM "python:3.7-alpine"
MAINTAINER "Julien Cabillot <julien@sdv.fr>"
RUN apk --no-cache add --virtual build-dependencies \
build-base libffi-dev libressl-dev && \
pip install --no-cache-dir ansible-lint && \
apk del build-dependencies