Merge "docker: Install cffi and cryptography from system packages"

This commit is contained in:
Zuul 2021-06-01 22:25:16 +00:00 committed by Gerrit Code Review
commit 0dd52bb3f5
2 changed files with 6 additions and 2 deletions

View File

@ -4,4 +4,6 @@ set -e
apk add --update \
python \
python-dev \
py-pip
py-pip \
py-cffi \
py-cryptography

View File

@ -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