2023-05-12 05:12:54 +00:00
|
|
|
FROM python:3.11-alpine@sha256:2f2dadb583247fa176faf0a22800ce7a8b7a83cfee734c00315c4d68a55f4b68
|
2019-10-08 13:39:08 +00:00
|
|
|
|
2020-12-31 12:40:10 +00:00
|
|
|
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/"
|
2019-10-08 13:39:08 +00:00
|
|
|
|
2019-10-16 05:59:45 +00:00
|
|
|
ENV PY_COLORS=1
|
2022-01-09 20:46:55 +00:00
|
|
|
ENV TZ=UTC
|
2019-10-16 05:59:45 +00:00
|
|
|
|
2019-10-08 15:02:40 +00:00
|
|
|
ADD dist/ansible_doctor-*.whl /
|
2019-10-08 14:26:58 +00:00
|
|
|
|
2022-01-09 20:46:55 +00:00
|
|
|
RUN apk --update add --virtual .build-deps build-base libffi-dev openssl-dev && \
|
2019-10-08 14:26:58 +00:00
|
|
|
pip install --upgrade --no-cache-dir pip && \
|
2020-12-31 12:40:10 +00:00
|
|
|
pip install --no-cache-dir $(find / -name "ansible_doctor-*.whl") && \
|
2020-04-11 11:27:14 +00:00
|
|
|
rm -f ansible_doctor-*.whl && \
|
2020-04-11 11:34:30 +00:00
|
|
|
rm -rf /var/cache/apk/* && \
|
2019-10-08 14:26:58 +00:00
|
|
|
rm -rf /root/.cache/
|
2019-10-08 13:39:08 +00:00
|
|
|
|
|
|
|
USER root
|
|
|
|
CMD []
|
2019-10-08 15:33:20 +00:00
|
|
|
ENTRYPOINT ["/usr/local/bin/ansible-doctor"]
|