Include libffi-devel in the Docker build.

This commit is contained in:
Dave Page 2018-05-31 10:48:32 -04:00
parent 98f84e5f34
commit 4372dd051e

View File

@ -45,7 +45,7 @@ ENV PYTHONPATH=/pgadmin4
# so that deps do not increase the size of resulting image by remaining in layers
COPY ./pgadmin4/requirements.txt /pgadmin4
RUN set -ex && \
apk add --no-cache --virtual build-deps build-base postgresql-dev && \
apk add --no-cache --virtual build-deps build-base postgresql-dev libffi-devel && \
pip install --no-cache-dir -r requirements.txt && \
apk del --no-cache build-deps