41767e2653
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
7 lines
99 B
Bash
7 lines
99 B
Bash
#!/bin/bash
|
|
set -xe
|
|
|
|
for python in /opt/python/*; do
|
|
"$python/bin/pip" install virtualenv
|
|
done
|