2020-11-12 21:39:00 +00:00
|
|
|
FROM python:3.9-alpine
|
2019-10-08 13:39:08 +00:00
|
|
|
|
2020-09-27 12:21:54 +00:00
|
|
|
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>" \
|
2019-10-08 13:39:08 +00:00
|
|
|
org.label-schema.name="ansible-doctor" \
|
2020-09-27 12:21:54 +00:00
|
|
|
org.label-schema.vcs-url="https://github.com/thegeeklab/ansible-doctor" \
|
2019-10-08 13:39:08 +00:00
|
|
|
org.label-schema.vendor="Robert Kaussow" \
|
|
|
|
org.label-schema.schema-version="1.0"
|
|
|
|
|
2019-10-16 05:59:45 +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 && \
|
2020-04-11 11:25:56 +00:00
|
|
|
pip install --no-cache-dir 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"]
|