Skip to content

Commit

Permalink
Install docker too.
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdebock committed Dec 2, 2020
1 parent 7428223 commit 5720ba3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ RUN dnf install -y docker \
python3-jmespath.noarch ; \
dnf clean all

RUN pip install tox docker "molecule[lint]>=3,<4" testinfra
RUN pip install tox docker "molecule[docker]>=3,<4" ansible-lint testinfra

CMD function retry { counter=0 ; until "$@" ; do exit=$? ; counter=$(($counter + 1)) ; if [ $counter -ge 3 ] ; then return $exit ; fi ; done ; return 0; } ; cd ${GITHUB_REPOSITORY} ; if [ -f tox.ini -a ${command:-test} = test ] ; then retry tox ${options} ; else PY_COLORS=1 ANSIBLE_FORCE_COLOR=1 retry molecule ${command:-test} --scenario-name ${scenario:-default}; fi

0 comments on commit 5720ba3

Please sign in to comment.