2021-11-28 13:10:31 +00:00
|
|
|
FROM arm32v7/python:3.10-alpine@sha256:6ee764ac3084eb137c2c0a16b89a5a93606633bf22a46aea61ee45f8eab1db3a
|
2021-01-03 14:37:13 +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-autotag"
|
|
|
|
LABEL org.opencontainers.image.url="https://github.com/thegeeklab/docker-autotag"
|
|
|
|
LABEL org.opencontainers.image.source="https://github.com/thegeeklab/docker-autotag"
|
|
|
|
LABEL org.opencontainers.image.documentation="https://github.com/thegeeklab/docker-autotag"
|
|
|
|
|
|
|
|
ENV PY_COLORS=1
|
|
|
|
|
|
|
|
ADD dist/docker_autotag-*.whl /
|
|
|
|
|
2021-06-30 07:01:37 +00:00
|
|
|
RUN apk --update add --virtual .build-deps build-base libffi-dev openssl-dev && \
|
2021-01-03 14:37:13 +00:00
|
|
|
apk --update add git && \
|
|
|
|
pip install --upgrade --no-cache-dir pip && \
|
|
|
|
pip install --no-cache-dir $(find / -name "docker_autotag-*.whl") && \
|
|
|
|
apk del .build-deps && \
|
|
|
|
rm -f docker_autotag-*.whl && \
|
|
|
|
rm -rf /var/cache/apk/* && \
|
|
|
|
rm -rf /root/.cache/
|
|
|
|
|
|
|
|
USER root
|
|
|
|
CMD []
|
|
|
|
ENTRYPOINT ["/usr/local/bin/docker-autotag"]
|