add git as dependency to docker image

This commit is contained in:
Robert Kaussow 2019-10-15 23:50:05 +02:00
parent 4f10820c1c
commit d485ff8543
1 changed files with 2 additions and 2 deletions

View File

@ -8,8 +8,8 @@ LABEL maintainer="Robert Kaussow <mail@geeklabor.de>" \
ADD dist/ansible_later-*.whl /
RUN apk --update add --virtual .build-deps build-base libffi-dev libressl-dev && \
pip install --upgrade --no-cache-dir pip && \
RUN apk --update add --virtual .build-deps build-base libffi-dev libressl-dev pip && \
pip install --upgrade --no-cache-dir git && \
pip install --no-cache-dir --find-links=. ansible-later && \
apk del .build-deps && \
rm -rf /var/cache/apk/* && \