FROM python:3.7-alpine LABEL maintainer="Robert Kaussow " \ org.label-schema.name="molecule" \ org.label-schema.vcs-url="https://gitea.rknet.org/docker/molecule" \ org.label-schema.vendor="Robert Kaussow" \ org.label-schema.schema-version="1.0" ENV PACKAGES="\ gcc \ make \ bash \ libffi-dev \ musl-dev \ openssl-dev \ python-dev \ git \ openssh-client \ " ENV PIP_PACKAGES="\ ansible~=2.8.0 \ molecule[ec2] \ virtualenv \ apache-libcloud \ pycrypto \ " COPY ./ec2-entrypoint.sh /docker-entrypoint.sh RUN \ apk update \ && apk add --update --no-cache ${PACKAGES} \ && rm -rf /var/cache/apk/* \ && pip install --upgrade --no-cache-dir pip \ && pip install --no-cache-dir ${PIP_PACKAGES} \ && rm -rf /root/.cache/ USER root ENTRYPOINT ["/docker-entrypoint.sh"]