summaryrefslogtreecommitdiff
path: root/docker
diff options
context:
space:
mode:
authorTim Burke <tim.burke@gmail.com>2021-05-27 10:31:14 -0700
committerTim Burke <tim.burke@gmail.com>2021-05-27 10:31:14 -0700
commit705a88bb110dbf19c1331671d845dd55439df3d2 (patch)
treed56c017758f0f2b0a3f6efc81be71e13e26dcd75 /docker
parentf7f1553edb7e3dbe57507113b730ee1f77472928 (diff)
downloadswift-705a88bb110dbf19c1331671d845dd55439df3d2.tar.gz
docker: Install cffi and cryptography from system packages
Currently, builds are busted because they can't build wheels for these. Change-Id: I964d5858bfb926890169d46cbc7ab4e76fc40250
Diffstat (limited to 'docker')
-rwxr-xr-xdocker/install_scripts/20_apk_install_py2.sh4
-rwxr-xr-xdocker/install_scripts/21_apk_install_py3.sh4
2 files changed, 6 insertions, 2 deletions
diff --git a/docker/install_scripts/20_apk_install_py2.sh b/docker/install_scripts/20_apk_install_py2.sh
index 7f4790d97..32367cc8d 100755
--- a/docker/install_scripts/20_apk_install_py2.sh
+++ b/docker/install_scripts/20_apk_install_py2.sh
@@ -4,4 +4,6 @@ set -e
apk add --update \
python \
python-dev \
- py-pip
+ py-pip \
+ py-cffi \
+ py-cryptography
diff --git a/docker/install_scripts/21_apk_install_py3.sh b/docker/install_scripts/21_apk_install_py3.sh
index a9f9b4b8c..0bc647d51 100755
--- a/docker/install_scripts/21_apk_install_py3.sh
+++ b/docker/install_scripts/21_apk_install_py3.sh
@@ -4,7 +4,9 @@ set -e
apk add --update \
python3 \
python3-dev \
- py3-pip
+ py3-pip \
+ py3-cffi \
+ py3-cryptography
if [ ! -e /usr/bin/pip ]; then ln -s pip3 /usr/bin/pip ; fi