2021-11-28 13:10:31 +00:00
|
|
|
FROM arm64v8/python:3.10-alpine@sha256:2c3e3fbd7e36aca4eee1e95e0d7c12022e580053dc61f7a86117bc666203686e
|
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"]
|