docker-tidy/docker/Dockerfile

27 lines
721 B
Docker
Raw Normal View History

2020-11-17 14:42:11 +01:00
FROM python:3.9-alpine
2020-03-07 15:52:02 +01:00
2020-09-25 19:48:40 +02:00
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>" \
2020-03-07 15:52:02 +01:00
org.label-schema.name="docker-tidy" \
2020-09-25 19:48:40 +02:00
org.label-schema.vcs-url="https://github.com/thegeeklab/docker-tidy" \
2020-03-07 15:52:02 +01:00
org.label-schema.vendor="Robert Kaussow" \
org.label-schema.schema-version="1.0"
ENV PY_COLORS=1
2020-03-15 22:58:22 +01:00
ENV TZ=UTC
2020-03-07 15:52:02 +01:00
ADD dist/docker_tidy-*.whl /
RUN \
apk --update add --virtual .build-deps gcc g++ && \
2020-03-07 15:52:02 +01:00
pip install --upgrade --no-cache-dir pip && \
2020-03-22 19:09:11 +01:00
pip install --no-cache-dir docker_tidy-*.whl && \
apk del .build-deps && \
2020-04-11 13:38:20 +02:00
rm -f docker_tidy-*.whl && \
rm -rf /var/cache/apk/* && \
rm -rf /root/.cache/ && \
rm -rf /tmp/*
2020-03-07 15:52:02 +01:00
USER root
CMD []
2020-03-15 22:16:03 +01:00
ENTRYPOINT ["/usr/local/bin/docker-tidy", "gc"]