Doc builds now need the cryptography module.

This commit is contained in:
Dave Page 2019-05-28 17:50:11 -04:00
parent 12186a0fd6
commit 91595593d3

View File

@ -23,7 +23,7 @@ FROM python:3.7-alpine3.9 as docs-builder
# Install only dependencies absolutely required for documentation building
RUN apk add --no-cache make && \
pip install --no-cache-dir sphinx flask_security flask_paranoid python-dateutil flask_sqlalchemy flask_gravatar flask_migrate simplejson
pip install --no-cache-dir sphinx flask_security flask_paranoid python-dateutil flask_sqlalchemy flask_gravatar flask_migrate simplejson cryptography
COPY ./pgadmin4/ /pgadmin4