git-batch/docker/Dockerfile

25 lines
720 B
Docker
Raw Normal View History

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