mirror of
https://github.com/thegeeklab/docker-tidy.git
synced 2024-11-04 20:10:40 +00:00
28 lines
971 B
Docker
28 lines
971 B
Docker
FROM arm64v8/python:3.9-alpine@sha256:b527768758bafe82c3509e9c7b66094c1eb202e9d91047f59c577dce35899e9a
|
|
|
|
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"]
|