Compare commits

...

10 Commits

Author SHA1 Message Date
9255612458 Added in rsync
All checks were successful
ci/woodpecker/manual/build Pipeline was successful
2024-01-09 14:56:25 +13:00
cbccf1ecb9 Add passlib: Crypt is deprecated from Py3.13 2023-10-05 22:21:37 +13:00
0df34ec321 Install windows collection 2023-10-05 17:21:34 +13:00
cf14890097 Add git 2023-10-05 16:26:48 +13:00
23d0b764d4 Pin Linters 2023-10-05 16:11:04 +13:00
3616b0d970 Fix wrongly spelled ansible-lint 2023-10-05 16:04:09 +13:00
6da5540a1e add yamllint and ansiblelint 2023-10-05 16:01:06 +13:00
50d13c0490 Install general modules 2023-08-19 22:29:24 +12:00
f1871cd066 Pull docker client from image 2023-08-19 22:22:57 +12:00
9399af1f7d Install docker cli 2023-08-19 22:18:34 +12:00

View File

@@ -1,6 +1,18 @@
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"]