fix docker dependencies

This commit is contained in:
Robert Kaussow 2019-10-16 00:01:27 +02:00
parent d485ff8543
commit e4611b8dd5
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 && \
pip install --upgrade --no-cache-dir git && \
RUN apk --update add --virtual .build-deps build-base libffi-dev libressl-dev git && \
pip install --upgrade --no-cache-dir pip && \
pip install --no-cache-dir --find-links=. ansible-later && \
apk del .build-deps && \
rm -rf /var/cache/apk/* && \