mirror of
https://github.com/thegeeklab/ansible-doctor.git
synced 2024-10-31 18:30:42 +00:00
24 lines
648 B
Docker
24 lines
648 B
Docker
FROM python:3.7-alpine
|
|
|
|
LABEL maintainer="Robert Kaussow <mail@geeklabor.de>" \
|
|
org.label-schema.name="ansible-doctor" \
|
|
org.label-schema.vcs-url="https://github.com/xoxys/ansible-doctor" \
|
|
org.label-schema.vendor="Robert Kaussow" \
|
|
org.label-schema.schema-version="1.0"
|
|
|
|
ENV PY_COLORS=1
|
|
|
|
ADD dist/ansible_doctor-*.whl /
|
|
|
|
RUN \
|
|
apk update --no-cache && \
|
|
rm -rf /var/cache/apk/* && \
|
|
pip install --upgrade --no-cache-dir pip && \
|
|
pip install --no-cache-dir --find-links=. ansible-doctor && \
|
|
rm -f ansible_doctor-*.whl && \
|
|
rm -rf /root/.cache/
|
|
|
|
USER root
|
|
CMD []
|
|
ENTRYPOINT ["/usr/local/bin/ansible-doctor"]
|