aboutsummaryrefslogtreecommitdiff
path: root/templates/tools/dockerfile/test/bazel/Dockerfile.template
diff options
context:
space:
mode:
Diffstat (limited to 'templates/tools/dockerfile/test/bazel/Dockerfile.template')
-rw-r--r--templates/tools/dockerfile/test/bazel/Dockerfile.template15
1 files changed, 10 insertions, 5 deletions
diff --git a/templates/tools/dockerfile/test/bazel/Dockerfile.template b/templates/tools/dockerfile/test/bazel/Dockerfile.template
index 111c1bfa5b..4ff8e65b4a 100644
--- a/templates/tools/dockerfile/test/bazel/Dockerfile.template
+++ b/templates/tools/dockerfile/test/bazel/Dockerfile.template
@@ -17,10 +17,8 @@
# Pinned version of the base image is used to avoid regressions caused
# by rebuilding of this docker image. To see available versions, you can run
# "gcloud container images list-tags gcr.io/oss-fuzz-base/base-builder"
- # TODO(jtattermusch): with the latest version we'd get clang12+
- # which makes our build fail due to new warnings being treated
- # as errors.
- FROM gcr.io/oss-fuzz-base/base-builder@sha256:de220fd2433cd53bd06b215770dcd14a5e74632e0215acea7401fee8cafb18da
+ # Image(c7f1523ebd92) is built on Jul 29, 2021
+ FROM gcr.io/oss-fuzz-base/base-builder@sha256:c7f1523ebd9234b9ff57e5240f8c06569143373be019c92f1e6df18a1e048f37
# -------------------------- WARNING --------------------------------------
# If you are making changes to this file, consider changing
@@ -41,7 +39,14 @@
openjdk-8-jdk ${'\\'}
vim
- <%include file="../../python_deps.include"/>
+ #====================
+ # Python dependencies
+
+ # Install dependencies
+ RUN apt-get update && apt-get install -y ${'\\'}
+ python-all-dev ${'\\'}
+ python3-all-dev ${'\\'}
+ python-setuptools
<%include file="../../compile_python_36.include"/>