Files
ansible-molecule/Dockerfile
Aaron Guise 9255612458
All checks were successful
ci/woodpecker/manual/build Pipeline was successful
Added in rsync
2024-01-09 14:56:25 +13:00

18 lines
516 B
Docker

FROM python:3.9-slim
RUN apt-get update && \
apt-get install -y git \
rsync && \
apt-get clean all && \
pip install 'ansible-core<2.17' \
'ansible-compat==3.0.2' \
'molecule[docker]<5.0.0' \
'ansible-lint==6.16.2' \
'yamllint==1.32.0' \
'passlib==1.7.4' && \
ansible-galaxy collection install community.general \
ansible.windows
COPY --from=docker:20.10 /usr/local/bin/docker /usr/local/bin/
CMD ["/bin/bash"]