mirror of
https://github.com/thegeeklab/docker-tidy.git
synced 2024-11-05 20:40:39 +00:00
28 lines
963 B
Docker
28 lines
963 B
Docker
FROM python:3.9-alpine@sha256:1e8728b3d791b4caa4b2569670e7fc2dcbe07f485a2349c86dcf8f3e63d9b015
|
|
|
|
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"]
|