infra/docker/manylinux2014_aarch64/install_virtualenv.sh
Ian Wienand 41767e2653 Build a manylinux2014 arm64 image
This is based on the upstream manylinux container images at

 https://github.com/pyca/infra

and builds a manylinux2014_aarch64 image with openssl installed in
such a way we can use the image to build cryptography manylinux
wheels, hopefully.

Change-Id: I0aea20081b7025c1f9cc4c75e49646737861ba8e
2020-08-14 11:25:53 +10:00

7 lines
99 B
Bash

#!/bin/bash
set -xe
for python in /opt/python/*; do
"$python/bin/pip" install virtualenv
done