ansible-doctor/Dockerfile

21 lines
587 B
Docker
Raw Normal View History

2019-10-08 15:39:08 +02:00
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"
2019-10-08 16:26:58 +02:00
ADD dist/ansible_doctor*.whl /ansible_doctor.whl
2019-10-08 15:39:08 +02:00
RUN \
apk update --no-cache \
2019-10-08 16:26:58 +02:00
rm -rf /var/cache/apk/* && \
pip install --upgrade --no-cache-dir pip && \
pip install --no-cache-dir ansible_doctor.whl && \
rm -f ansible_doctor.whl && \
rm -rf /root/.cache/
2019-10-08 15:39:08 +02:00
USER root
CMD []