docker run --rm-ti-v"$(pwd):/gevent" quay.io/pypa/manylinux2010_x86_64 /gevent/scripts/releases/$(basename$0)
# Mount the current directory as /gevent
# Mount the pip cache directory as /cache
LCACHE="$(dirname`python -mpip cache dir`)"
echo Sharing pip cache at $LCACHE
echo Sharing ccache dir at $HOME/.ccache
if[!-d$HOME/.ccache ];then
mkdir$HOME/.ccache
fi
docker run --rm-ti-v"$(pwd):/gevent"-v"$LCACHE:/cache"-v"$HOME/.ccache:/ccache" quay.io/pypa/manylinux2010_x86_64 /gevent/scripts/releases/$(basename$0)