We have to do libffi-dev ourselves.

This commit is contained in:
Jean-Paul Calderone 2017-05-01 13:16:54 -04:00
parent 55df2ac429
commit 8965cd2daa

View File

@ -28,10 +28,15 @@ RUN apt-get --quiet update && \
unattended-upgrade --minimal_upgrade_steps && \
rm -rf /var/lib/apt/lists/*
# libffi-dev should probably be a build-dep for python-nacl and python-openssl
# but isn't for some reason.
RUN apt-get --quiet update && apt-get --quiet install -y \
libffi-dev \
python-virtualenv \
&& rm -rf /var/lib/apt/lists/*
# magic-wormhole depends on these and pip wants to build them both from
# source.
RUN apt-get --quiet update && apt-get --quiet build-dep -y \
python-nacl \
python-openssl \