mirror of
https://github.com/thegeeklab/ansible-doctor.git
synced 2024-11-09 23:00:41 +00:00
c9066fe6be
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | python | final | digest | `29d92b7` -> `0bd77ae` | --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/thegeeklab/ansible-doctor). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
25 lines
968 B
Plaintext
25 lines
968 B
Plaintext
FROM python:3.12-alpine@sha256:0bd77ae937dce9037e136ab35f41eaf9e012cfd741fc3c8dd4b3e2b63499f12c
|
|
|
|
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
|
|
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
|
|
LABEL org.opencontainers.image.title="ansible-doctor"
|
|
LABEL org.opencontainers.image.url="https://ansible-doctor.geekdocs.de/"
|
|
LABEL org.opencontainers.image.source="https://github.com/thegeeklab/ansible-doctor"
|
|
LABEL org.opencontainers.image.documentation="https://ansible-doctor.geekdocs.de/"
|
|
|
|
ENV PY_COLORS=1
|
|
ENV TZ=UTC
|
|
|
|
ADD dist/ansible_doctor-*.whl /
|
|
|
|
RUN apk --update add --virtual .build-deps build-base libffi-dev openssl-dev git && \
|
|
pip install --upgrade --no-cache-dir pip && \
|
|
pip install --no-cache-dir $(find / -name "ansible_doctor-*.whl")[ansible-core] && \
|
|
rm -f ansible_doctor-*.whl && \
|
|
rm -rf /var/cache/apk/* && \
|
|
rm -rf /root/.cache/
|
|
|
|
USER root
|
|
CMD []
|
|
ENTRYPOINT ["/usr/local/bin/ansible-doctor"]
|