You've already forked ansible-molecule
Compare commits
10 Commits
0e7579b7ef
...
9255612458
| Author | SHA1 | Date | |
|---|---|---|---|
| 9255612458 | |||
| cbccf1ecb9 | |||
| 0df34ec321 | |||
| cf14890097 | |||
| 23d0b764d4 | |||
| 3616b0d970 | |||
| 6da5540a1e | |||
| 50d13c0490 | |||
| f1871cd066 | |||
| 9399af1f7d |
16
Dockerfile
16
Dockerfile
@@ -1,6 +1,18 @@
|
|||||||
FROM python:3.9-slim
|
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'
|
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"]
|
CMD ["/bin/bash"]
|
||||||
Reference in New Issue
Block a user