2019-02-13 22:44:56 +00:00
|
|
|
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 && \
|
2019-02-19 21:55:15 +00:00
|
|
|
pip install --no-cache-dir ansible-lint ansible-lint-junit && \
|
2019-02-13 22:44:56 +00:00
|
|
|
apk del build-dependencies
|