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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug When running bazel run @bullseye://.lock without an existing bullseye.lock.json file present, the command fails with the error:
bazel run @bullseye://.lock
bullseye.lock.json
Error in read: java.io.FileNotFoundException: /home/qdii/dev/rules_distroless/e2e/smoke/bullseye.lock.json (No such file or directory)
To Reproduce
.bzlversion
.bullseye.lock.json
bazel run @bullseye//:lock
bazel run @bullseye_nolock//:lock
Observe the command failing
Expected behavior bullseye.lock.json is an output of the command at stage 4 or 5
The text was updated successfully, but these errors were encountered:
Apparently creating the file with this template works:
{ "packages": [], "version": 1 }
I think it would be nice to add it to some documentation.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
When running
bazel run @bullseye://.lock
without an existingbullseye.lock.json
file present, the command fails with the error:To Reproduce
.bzlversion
to use the latest bazel version.bullseye.lock.json
bazel run @bullseye//:lock
to regenerate itbazel run @bullseye_nolock//:lock
tooObserve the command failing
Expected behavior
bullseye.lock.json
is an output of the command at stage 4 or 5The text was updated successfully, but these errors were encountered: