docker-tidy/docker/Dockerfile.arm64
renovate[bot] c39a0e7e1c
chore(deps): update arm64v8/python:3.9-alpine docker digest to a6b4680 (#38)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-02-18 12:27:16 +01:00

28 lines
971 B
Docker

FROM arm64v8/python:3.9-alpine@sha256:a6b4680446ed26cafe454ff6952a524c9a0db22d1c061a962a8283947933721d
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
LABEL org.opencontainers.image.title="docker-tidy"
LABEL org.opencontainers.image.url="https://docker-tidy.geekdocs.de/"
LABEL org.opencontainers.image.source="https://github.com/thegeeklab/docker-tidy"
LABEL org.opencontainers.image.documentation="https://docker-tidy.geekdocs.de/"
ENV PY_COLORS=1
ENV TZ=UTC
ADD dist/docker_tidy-*.whl /
RUN \
apk --update add --virtual .build-deps gcc g++ && \
pip install --upgrade --no-cache-dir pip && \
pip install --no-cache-dir $(find / -name "docker_tidy-*.whl") && \
apk del .build-deps && \
rm -f docker_tidy-*.whl && \
rm -rf /var/cache/apk/* && \
rm -rf /root/.cache/ && \
rm -rf /tmp/*
USER root
CMD []
ENTRYPOINT ["/usr/local/bin/docker-tidy", "gc"]