We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
patch
Somewhere along the line, bazel shells out to the patch binary when building:
Error in fail: Error applying patch @io_bazel_rules_go//third_party:go_googleapis-deletebuild.patch: bash: patch: command not found
The fix was easy, just added this to my Dockerfile.dazel:
Dockerfile.dazel
RUN apt update && apt install -y patch
It might be useful to people if this was pre-installed in the default dazel/dazel image.
dazel/dazel
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Somewhere along the line, bazel shells out to the
patch
binary when building:The fix was easy, just added this to my
Dockerfile.dazel
:RUN apt update && apt install -y patch
It might be useful to people if this was pre-installed in the default
dazel/dazel
image.The text was updated successfully, but these errors were encountered: