You've already forked ansible-molecule
11 lines
311 B
Docker
11 lines
311 B
Docker
FROM python:3.9-slim
|
|
ARG DEPOT_VERSION=2.30.0
|
|
|
|
RUN pip install 'ansible-core<2.17' \
|
|
'ansible-compat==3.0.2' \
|
|
'molecule[docker]<5.0.0' && \
|
|
ansible-galaxy collection install community.general
|
|
|
|
COPY --from=docker:20.10 /usr/local/bin/docker /usr/local/bin/
|
|
|
|
CMD ["/bin/bash"] |