FROM debian:buster LABEL maintainer="decentral1se" ENV DEBIAN_FRONTEND noninteractive RUN apt-get update \ && apt-get install -y --no-install-recommends \ build-essential \ curl \ libffi-dev \ libssl-dev \ openssh-client \ pwgen \ python3-dev \ python3-pip \ python3-setuptools \ python3-wheel \ sudo \ wget \ && rm -rf /var/lib/apt/lists/* \ && rm -Rf /usr/share/doc && rm -Rf /usr/share/man \ && apt-get clean RUN \ curl -fsSL https://get.docker.com | bash RUN \ python3 -m pip install -U \ pip \ setuptools RUN \ python3 -m pip install \ "ansible-lint<5" \ ansible==2.10.7 \ molecule-docker==0.2.4 \ molecule-hetznercloud==1.0.0 \ molecule==3.2.3 \ pytest-testinfra==6.1.0 \ yamllint==1.26.0