bazel-rules-fuzzing-test: Link python to python3 (#9024)

rules_fuzzing uses Bazel 4, which still expects `python` in `PATH`.

Work towards
https://github.com/bazelbuild/rules_fuzzing/pull/212#issuecomment-1317260421
This commit is contained in:
Fabian Meumertzheim 2022-11-22 03:46:47 +01:00 committed by GitHub
parent ba1cb7be26
commit f3304082c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -16,6 +16,9 @@
FROM gcr.io/oss-fuzz-base/base-builder-jvm
RUN apt-get update && \
apt-get install -y python-is-python3
RUN git clone https://github.com/bazelbuild/rules_fuzzing.git
WORKDIR $SRC/rules_fuzzing/
COPY build.sh $SRC/

View File

@ -16,6 +16,9 @@
FROM gcr.io/oss-fuzz-base/base-builder
RUN apt-get update && \
apt-get install -y python-is-python3
RUN git clone https://github.com/bazelbuild/rules_fuzzing.git
WORKDIR $SRC/rules_fuzzing/
COPY build.sh $SRC/