From 40148bc1b77fda9bacd5d3bb6a9eb5214a2bc25a Mon Sep 17 00:00:00 2001 From: Corentin Le Molgat Date: Mon, 15 Apr 2019 16:01:44 +0200 Subject: [PATCH] Docker: use the official manylinux2010 container - bonus: work on modern linux see: https://www.python.org/dev/peps/pep-0571/#compatibility-with-kernels-that-lack-vsyscall --- tools/docker/manylinux1.Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/docker/manylinux1.Dockerfile b/tools/docker/manylinux1.Dockerfile index c2bebe12e2..0d439c55d6 100644 --- a/tools/docker/manylinux1.Dockerfile +++ b/tools/docker/manylinux1.Dockerfile @@ -1,4 +1,4 @@ -FROM henriquegemignani/manylinux:x86_64 +FROM quay.io/pypa/manylinux2010_x86_64:latest RUN yum -y update \ && yum -y install \ @@ -53,7 +53,7 @@ RUN curl --location-trusted \ && rm -rf swig-3.0.12 # Update auditwheel to support manylinux2010 -RUN /opt/_internal/cpython-3.6.7/bin/pip install auditwheel==2.0.0rc1 +#RUN /opt/_internal/cpython-3.6.8/bin/pip install auditwheel==2.0.0 ENV TZ=America/Los_Angeles RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone