2020-11-11 22:48:33 +00:00
|
|
|
FROM python:3.9-alpine
|
2019-12-02 08:53:35 +00:00
|
|
|
|
2020-09-24 18:17:44 +00:00
|
|
|
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>" \
|
2019-11-29 13:45:28 +00:00
|
|
|
org.label-schema.name="git-batch" \
|
2020-09-24 18:17:44 +00:00
|
|
|
org.label-schema.vcs-url="https://github.com/thegeeklab/git-batch" \
|
2019-11-29 13:45:28 +00:00
|
|
|
org.label-schema.vendor="Robert Kaussow" \
|
|
|
|
org.label-schema.schema-version="1.0"
|
|
|
|
|
|
|
|
ENV PY_COLORS=1
|
|
|
|
|
|
|
|
ADD dist/git_batch-*.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 && \
|
2020-04-11 11:39:23 +00:00
|
|
|
pip install --no-cache-dir git_batch-*.whl && \
|
2019-11-29 13:45:28 +00:00
|
|
|
apk del .build-deps && \
|
2020-04-11 11:39:23 +00:00
|
|
|
rm -f git_batch-*.whl && \
|
2019-11-29 13:45:28 +00:00
|
|
|
rm -rf /var/cache/apk/* && \
|
2020-04-11 11:42:51 +00:00
|
|
|
rm -rf /root/.cache/
|
2019-11-29 13:45:28 +00:00
|
|
|
|
|
|
|
USER root
|
|
|
|
CMD []
|
|
|
|
ENTRYPOINT ["/usr/local/bin/git-batch"]
|