aboutsummaryrefslogtreecommitdiff
path: root/projects/upb
diff options
context:
space:
mode:
authorjonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2021-08-19 22:16:38 -0700
committerGitHub <noreply@github.com>2021-08-20 05:16:38 +0000
commitfe09bda7d619f16e6fd3c5003f8748efe1632d73 (patch)
tree2b682ddb8163c9766f61a85e61fb2d8bf5315e39 /projects/upb
parent4f0b1d0b69f8fb2b2e23309b31db299a480062a3 (diff)
downloadoss-fuzz-fe09bda7d619f16e6fd3c5003f8748efe1632d73.tar.gz
Install python in projects that depend on it. (#6251)
When we upgrade to 20.04, python wont be in base-builder and these projects will fail unless they install it. Until then, this change should be a noop. Related: #6180
Diffstat (limited to 'projects/upb')
-rw-r--r--projects/upb/Dockerfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/projects/upb/Dockerfile b/projects/upb/Dockerfile
index b5c3763f9..c97eaf05d 100644
--- a/projects/upb/Dockerfile
+++ b/projects/upb/Dockerfile
@@ -15,6 +15,7 @@
################################################################################
FROM gcr.io/oss-fuzz-base/base-builder
+RUN apt-get update && apt-get install python -y
RUN git clone --depth 1 https://github.com/protocolbuffers/upb.git upb
WORKDIR upb
COPY build.sh $SRC/