ansible-doctor/docker/Dockerfile.amd64

24 lines
877 B
Docker
Raw Normal View History

2021-11-28 13:11:17 +00:00
FROM python:3.10-alpine@sha256:bed0a5fe5b7d996b0678abf4fb2f0d5f3d5078cda951ccdc068ffbddb555e727
2019-10-08 13:39:08 +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
ENV PY_COLORS=1
2019-10-08 15:02:40 +00:00
ADD dist/ansible_doctor-*.whl /
2019-10-08 14:26:58 +00:00
2020-04-11 11:34:30 +00:00
RUN apk update && \
2019-10-08 14:26:58 +00:00
pip install --upgrade --no-cache-dir pip && \
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"]