add missing build deps to docker image

This commit is contained in:
Robert Kaussow 2019-10-10 22:21:01 +02:00
parent 06df6c3f32
commit 4240be5125
1 changed files with 5 additions and 5 deletions

View File

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