Skip to content

Commit

Permalink
bazel-rules-fuzzing-test: Link python to python3 (#9024)
Browse files Browse the repository at this point in the history
rules_fuzzing uses Bazel 4, which still expects `python` in `PATH`.

Work towards
bazel-contrib/rules_fuzzing#212 (comment)
  • Loading branch information
fmeum authored Nov 22, 2022
1 parent ba1cb7b commit f330408
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions projects/bazel-rules-fuzzing-test-java/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/
3 changes: 3 additions & 0 deletions projects/bazel-rules-fuzzing-test/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/

0 comments on commit f330408

Please sign in to comment.