mirror of https://github.com/google/oss-fuzz.git
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:
parent
ba1cb7be26
commit
f3304082c2
|
@ -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/
|
||||
|
|
|
@ -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/
|
||||
|
|
Loading…
Reference in New Issue