summaryrefslogtreecommitdiff
path: root/grpc/tools/dockerfile/grpc_artifact_python_manylinux2010_x86/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'grpc/tools/dockerfile/grpc_artifact_python_manylinux2010_x86/Dockerfile')
-rw-r--r--grpc/tools/dockerfile/grpc_artifact_python_manylinux2010_x86/Dockerfile11
1 files changed, 6 insertions, 5 deletions
diff --git a/grpc/tools/dockerfile/grpc_artifact_python_manylinux2010_x86/Dockerfile b/grpc/tools/dockerfile/grpc_artifact_python_manylinux2010_x86/Dockerfile
index b375792f..0896ac4e 100644
--- a/grpc/tools/dockerfile/grpc_artifact_python_manylinux2010_x86/Dockerfile
+++ b/grpc/tools/dockerfile/grpc_artifact_python_manylinux2010_x86/Dockerfile
@@ -13,13 +13,14 @@
# limitations under the License.
# Docker file for building gRPC manylinux Python artifacts.
-# Updated: 2020-10-08
-FROM quay.io/pypa/manylinux2010_i686
+# python2.7 was removed from the manylinux2010 image.
+# Use the latest version that still has python2.7
+# TODO(jtattermusch): Stop building python2.7 wheels.
+FROM quay.io/pypa/manylinux2010_i686:2021-02-06-3d322a5
-# Update the package manager
-RUN yum update -y
-RUN yum install -y curl-devel expat-devel gettext-devel linux-headers openssl-devel zlib-devel gcc
+# TODO(jtattermusch): revisit which of the deps are really required
+RUN yum update -y && yum install -y curl-devel expat-devel gettext-devel linux-headers openssl-devel zlib-devel gcc
###################################
# Install Python build requirements