From 8221561c345c9260e6e59a500405749b488bd992 Mon Sep 17 00:00:00 2001 From: jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com> Date: Thu, 13 May 2021 08:32:42 -0700 Subject: [PATCH] Fix coverage script issues (#5764) Make sure to install MarkupSafe==0.23 instead of >=0.23 which breaks. Probably the solution is to upgrade Jinja upstream. Fixes #5763 --- infra/base-images/base-runner/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/infra/base-images/base-runner/Dockerfile b/infra/base-images/base-runner/Dockerfile index bb7898a5d..4e196019e 100755 --- a/infra/base-images/base-runner/Dockerfile +++ b/infra/base-images/base-runner/Dockerfile @@ -52,7 +52,8 @@ RUN apt-get update && apt-get install -y \ RUN git clone https://chromium.googlesource.com/chromium/src/tools/code_coverage /opt/code_coverage && \ pip3 install wheel && \ - pip3 install -r /opt/code_coverage/requirements.txt + pip3 install -r /opt/code_coverage/requirements.txt && \ + pip3 install MarkupSafe==0.23 # Default environment options for various sanitizers. # Note that these match the settings used in ClusterFuzz and