mirror of
https://github.com/thegeeklab/docker-autotag.git
synced 2024-11-05 08:50:40 +00:00
25 lines
750 B
Docker
25 lines
750 B
Docker
FROM python:3.9-alpine
|
|
|
|
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>" \
|
|
org.label-schema.name="docker-autotag" \
|
|
org.label-schema.vcs-url="https://github.com/thegeeklab/docker-autotag" \
|
|
org.label-schema.vendor="Robert Kaussow" \
|
|
org.label-schema.schema-version="1.0"
|
|
|
|
ENV PY_COLORS=1
|
|
|
|
ADD dist/docker_autotag-*.whl /
|
|
|
|
RUN apk --update add --virtual .build-deps build-base libffi-dev libressl-dev && \
|
|
apk --update add git && \
|
|
pip install --upgrade --no-cache-dir pip && \
|
|
pip install --no-cache-dir 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"]
|