aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/grpc-httpjson-transcoding
diff options
context:
space:
mode:
authorGravatar jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2021-08-19 22:16:38 -0700
committerGravatar GitHub <noreply@github.com>2021-08-20 05:16:38 +0000
commitfe09bda7d619f16e6fd3c5003f8748efe1632d73 (patch)
tree2b682ddb8163c9766f61a85e61fb2d8bf5315e39 /projects/grpc-httpjson-transcoding
parent4f0b1d0b69f8fb2b2e23309b31db299a480062a3 (diff)
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/grpc-httpjson-transcoding')
-rw-r--r--projects/grpc-httpjson-transcoding/Dockerfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/projects/grpc-httpjson-transcoding/Dockerfile b/projects/grpc-httpjson-transcoding/Dockerfile
index 6b25f92f..1746a42a 100644
--- a/projects/grpc-httpjson-transcoding/Dockerfile
+++ b/projects/grpc-httpjson-transcoding/Dockerfile
@@ -17,6 +17,7 @@
FROM gcr.io/oss-fuzz-base/base-builder
MAINTAINER nareddyt@google.com
+RUN apt-get update && apt-get install python -y
RUN git clone https://github.com/grpc-ecosystem/grpc-httpjson-transcoding.git
WORKDIR $SRC/grpc-httpjson-transcoding/
COPY build.sh $SRC/