ansible-doctor/docker/Dockerfile.arm

24 lines
884 B
Docker
Raw Normal View History

2021-07-31 21:53:26 +00:00
FROM arm32v7/python:3.9-alpine@sha256:4beb9f3fbab2635229fda7bbb17375e48ac0e2ead959774939b80371cc20300f
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"]