mirror of
https://github.com/thegeeklab/git-batch.git
synced 2024-11-04 18:50:40 +00:00
26 lines
912 B
Docker
26 lines
912 B
Docker
|
FROM arm64v8/python:3.9-alpine
|
||
|
|
||
|
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
|
||
|
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
|
||
|
LABEL org.opencontainers.image.title="git-batch"
|
||
|
LABEL org.opencontainers.image.url="https://github.com/thegeeklab/git-batch"
|
||
|
LABEL org.opencontainers.image.source="https://github.com/thegeeklab/git-batch"
|
||
|
LABEL org.opencontainers.image.documentation="https://github.com/thegeeklab/git-batch"
|
||
|
|
||
|
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 && \
|
||
|
pip install --no-cache-dir $(find / -name "git_batch-*.whl") && \
|
||
|
apk del .build-deps && \
|
||
|
rm -f git_batch-*.whl && \
|
||
|
rm -rf /var/cache/apk/* && \
|
||
|
rm -rf /root/.cache/
|
||
|
|
||
|
USER root
|
||
|
CMD []
|
||
|
ENTRYPOINT ["/usr/local/bin/git-batch"]
|