2023-12-09 05:07:07 +00:00
|
|
|
FROM docker.io/python:3.12-alpine@sha256:c793b92fd9e0e2a0b611756788a033d569ca864b733461c8fb30cfd14847dbcf
|
2019-11-22 20:52:56 +00:00
|
|
|
|
2020-12-20 21:47:43 +00:00
|
|
|
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
|
|
|
|
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
|
|
|
|
LABEL org.opencontainers.image.title="molecule"
|
2023-11-08 08:03:37 +00:00
|
|
|
LABEL org.opencontainers.image.url="https://gitea.rknet.org/container/molecule"
|
|
|
|
LABEL org.opencontainers.image.source="https://gitea.rknet.org/container/molecule"
|
|
|
|
LABEL org.opencontainers.image.documentation="https://gitea.rknet.org/container/molecule"
|
2019-11-22 20:52:56 +00:00
|
|
|
|
2020-10-18 20:20:24 +00:00
|
|
|
ARG ANSIBLE_VERSION
|
2023-11-08 08:03:37 +00:00
|
|
|
ARG MOLECULE_VERSION
|
2020-10-18 20:20:24 +00:00
|
|
|
|
|
|
|
# renovate: datasource=pypi depName=molecule
|
2023-11-08 08:03:37 +00:00
|
|
|
ENV MOLECULE_VERSION="${MOLECULE_VERSION:-6.0.2}"
|
2020-10-18 20:20:24 +00:00
|
|
|
# renovate: datasource=pypi depName=ansible
|
2023-12-06 22:21:16 +00:00
|
|
|
ENV ANSIBLE_VERSION="${ANSIBLE_VERSION:-9.1.0}"
|
2020-02-20 16:24:52 +00:00
|
|
|
|
2021-02-21 14:45:18 +00:00
|
|
|
ENV PY_COLORS=1
|
|
|
|
ENV CARGO_NET_GIT_FETCH_WITH_CLI=true
|
|
|
|
ENV ANSIBLE_FORCE_COLOR=true
|
|
|
|
ENV USER=root
|
|
|
|
ENV PATH=/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin
|
2023-12-14 07:55:08 +00:00
|
|
|
ENV PIPX_HOME=/opt/pipx
|
|
|
|
ENV PIPX_BIN_DIR=/usr/local/bin
|
2019-11-22 20:52:56 +00:00
|
|
|
|
|
|
|
COPY overlay/ /
|
|
|
|
|
2021-02-21 14:45:18 +00:00
|
|
|
RUN apk add --update --no-cache --virtual .build-deps build-base libffi-dev musl-dev openssl-dev python3-dev cargo && \
|
2023-12-14 07:55:08 +00:00
|
|
|
apk add --update --no-cache git openssh-client pipx && \
|
2020-02-20 20:19:20 +00:00
|
|
|
echo "Installing ansible 'v$ANSIBLE_VERSION' ..." && \
|
2023-12-14 07:55:08 +00:00
|
|
|
pipx install --include-deps ansible=="$ANSIBLE_VERSION" && \
|
|
|
|
echo "Installing molecule version '$MOLECULE_VERSION' ..." && \
|
|
|
|
pipx inject --include-apps ansible molecule && \
|
|
|
|
pipx inject --include-apps ansible pytest && \
|
|
|
|
pipx inject ansible pytest-testinfra && \
|
|
|
|
pipx inject ansible molecule-plugins[docker] && \
|
|
|
|
pipx inject ansible molecule_hetznercloud && \
|
|
|
|
pipx inject ansible boto && \
|
|
|
|
pipx inject ansible boto3 && \
|
|
|
|
pipx inject ansible botocore && \
|
|
|
|
pipx inject ansible hcloud && \
|
|
|
|
pipx inject ansible apache-libcloud && \
|
|
|
|
pipx inject ansible pycrypto && \
|
|
|
|
pipx inject ansible flaky && \
|
|
|
|
pipx inject ansible passlib && \
|
|
|
|
$PIPX_HOME/shared/bin/pip install -U pip setuptools && \
|
2020-02-20 20:19:20 +00:00
|
|
|
apk del .build-deps && \
|
2019-11-22 20:52:56 +00:00
|
|
|
rm -rf /var/cache/apk/* && \
|
|
|
|
rm -rf /tmp/* && \
|
|
|
|
rm -rf /root/.cache/
|
|
|
|
|
|
|
|
USER root
|
|
|
|
CMD []
|
|
|
|
ENTRYPOINT ["/bin/molecule"]
|