2022-04-07 13:01:51 +00:00
|
|
|
FROM docker:dind
|
|
|
|
MAINTAINER Adrien Waksberg "docker@yae.im"
|
|
|
|
|
2023-07-10 08:46:46 +00:00
|
|
|
RUN apk add --no-cache rsync python3 python3-dev py3-pip gcc git curl build-base gettext \
|
2022-04-07 13:01:51 +00:00
|
|
|
autoconf automake py3-cryptography linux-headers musl-dev libffi-dev openssl-dev openssh
|
2023-12-15 11:08:05 +00:00
|
|
|
RUN python3 -m pip install --break-system-packages \
|
2022-04-07 13:01:51 +00:00
|
|
|
ansible \
|
|
|
|
ansible-lint \
|
|
|
|
docker \
|
|
|
|
molecule \
|
2023-07-10 08:46:46 +00:00
|
|
|
molecule-plugins[docker] \
|
2022-04-07 13:01:51 +00:00
|
|
|
pytest-testinfra \
|
|
|
|
yamllint
|