molecule/Dockerfile

50 lines
2.0 KiB
Docker
Raw Permalink Normal View History

FROM python:3.9-alpine@sha256:f189f7366b0d381bf6186b2a2c3d37f143c587e0da2e8dcc21a732bddf4e6f7b
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
LABEL org.opencontainers.image.title="molecule"
LABEL org.opencontainers.image.url="https://gitea.rknet.org/docker/molecule"
LABEL org.opencontainers.image.source="https://gitea.rknet.org/docker/molecule"
LABEL org.opencontainers.image.documentation="https://gitea.rknet.org/docker/molecule"
2020-10-18 22:20:24 +02:00
ARG ANSIBLE_VERSION
ARG BUILD_VERSION
# renovate: datasource=pypi depName=molecule
chore(deps): update dependency molecule to v3.3.1 (#56) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [molecule](https://github.com/ansible-community/molecule) | patch | `3.3.0` -> `3.3.1` | --- ### Release Notes <details> <summary>ansible-community/molecule</summary> ### [`v3.3.1`](https://github.com/ansible-community/molecule/releases/3.3.1) [Compare Source](https://github.com/ansible-community/molecule/compare/3.3.0...3.3.1) #### Changes - fix(deps): add compatibility for click 8.0 via click-help-colors ([#&#8203;3109](https://github.com/ansible-community/molecule/issues/3109)) [@&#8203;anthraxx](https://github.com/anthraxx) - Properly construct collections path ([#&#8203;3085](https://github.com/ansible-community/molecule/issues/3085)) [@&#8203;tadeboro](https://github.com/tadeboro) - Reformat source files with black ([#&#8203;3100](https://github.com/ansible-community/molecule/issues/3100)) [@&#8203;tadeboro](https://github.com/tadeboro) #### Bugfixes - fix(deps): cookiecutter conflicts ([#&#8203;3113](https://github.com/ansible-community/molecule/issues/3113)) [@&#8203;ssbarnea](https://github.com/ssbarnea) - Fix ANSIBLE_LIBRARY variable handling ([#&#8203;3103](https://github.com/ansible-community/molecule/issues/3103)) [@&#8203;tadeboro](https://github.com/tadeboro) - Make sure run_command properly combines envs ([#&#8203;3104](https://github.com/ansible-community/molecule/issues/3104)) [@&#8203;tadeboro](https://github.com/tadeboro) - Make sure we detect dependency installation failure ([#&#8203;3105](https://github.com/ansible-community/molecule/issues/3105)) [@&#8203;tadeboro](https://github.com/tadeboro) </details> --- ### Configuration 📅 **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻️ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Reviewed-on: https://gitea.rknet.org/docker/molecule/pulls/56 Co-authored-by: Renovator Bot <renovator@rknet.org> Co-committed-by: Renovator Bot <renovator@rknet.org>
2021-05-15 15:19:19 +02:00
ENV MOLECULE_VERSION="${BUILD_VERSION:-3.3.1}"
2020-10-18 22:20:24 +02:00
# renovate: datasource=pypi depName=ansible
ENV ANSIBLE_VERSION="${ANSIBLE_VERSION:-3.4.0}"
2020-02-20 17:24:52 +01:00
2021-02-21 15:45:18 +01: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
COPY overlay/ /
2021-02-21 15:45:18 +01:00
RUN apk add --update --no-cache --virtual .build-deps build-base libffi-dev musl-dev openssl-dev python3-dev cargo && \
2020-02-20 21:19:20 +01:00
apk add --update --no-cache git openssh-client && \
echo "Installing requirements ..." && \
pip install -qq --upgrade --no-cache-dir pip && \
pip install -qq --no-cache-dir -r /root/requirements.txt && \
2020-02-20 21:19:20 +01:00
echo "Installing ansible 'v$ANSIBLE_VERSION' ..." && \
2020-10-18 22:20:24 +02:00
pip install -qq --no-cache-dir ansible=="$ANSIBLE_VERSION" && \
2020-02-22 16:46:02 +01:00
MOLECULE_VERSION="${MOLECULE_VERSION##v}" && \
2020-02-20 21:19:20 +01:00
MOLECULE_MAJOR="${MOLECULE_VERSION%%.*}" && \
if [ -z "${MOLECULE_MAJOR//[0-9]}" ] && [ -n "$MOLECULE_MAJOR" ]; then \
2020-02-22 16:46:02 +01:00
echo "Installing molecule version '$MOLECULE_VERSION' ..." && \
2020-10-18 22:20:24 +02:00
pip install -qq --no-cache-dir molecule[docker,podman,lint]=="$MOLECULE_VERSION"; \
2020-02-20 21:19:20 +01:00
else \
echo "Installing latest molecule ..." && \
pip install -qq --no-cache-dir molecule[docker,podman,lint]; \
2020-02-20 21:19:20 +01:00
fi && \
apk del .build-deps && \
rm -rf /var/cache/apk/* && \
rm -rf /tmp/* && \
rm -rf /root/.cache/
USER root
CMD []
ENTRYPOINT ["/bin/molecule"]