2024-04-11 01:17:57 +00:00
|
|
|
FROM python:3.12-alpine@sha256:ef097620baf1272e38264207003b0982285da3236a20ed829bf6bbf1e85fe3cb
|
2020-03-07 14:52:02 +00:00
|
|
|
|
2020-12-25 15:31:37 +00:00
|
|
|
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/"
|
2020-03-07 14:52:02 +00:00
|
|
|
|
|
|
|
ENV PY_COLORS=1
|
2020-03-15 21:58:22 +00:00
|
|
|
ENV TZ=UTC
|
2020-03-07 14:52:02 +00:00
|
|
|
|
|
|
|
ADD dist/docker_tidy-*.whl /
|
|
|
|
|
2022-01-09 21:08:26 +00:00
|
|
|
RUN apk --update add --virtual .build-deps build-base libffi-dev openssl-dev && \
|
2020-03-07 14:52:02 +00:00
|
|
|
pip install --upgrade --no-cache-dir pip && \
|
2021-01-03 14:36:26 +00:00
|
|
|
pip install --no-cache-dir $(find / -name "docker_tidy-*.whl") && \
|
2020-03-15 14:19:18 +00:00
|
|
|
apk del .build-deps && \
|
2020-04-11 11:38:20 +00:00
|
|
|
rm -f docker_tidy-*.whl && \
|
2020-03-15 14:19:18 +00:00
|
|
|
rm -rf /var/cache/apk/* && \
|
|
|
|
rm -rf /root/.cache/ && \
|
|
|
|
rm -rf /tmp/*
|
2020-03-07 14:52:02 +00:00
|
|
|
|
|
|
|
USER root
|
|
|
|
CMD []
|
2020-03-15 21:16:03 +00:00
|
|
|
ENTRYPOINT ["/usr/local/bin/docker-tidy", "gc"]
|