aryeh

Results 28 comments of aryeh

Repro is to clone https://github.com/GoogleCloudPlatform/cloud-spanner-emulator and attempt to build with bazel 5.2.0

+1 -- would also be great to use the bazel remote cache for this stuff perhaps

Out of curiosity, is `#n` — and its friends, `#d`, `#e`, `#p`, and `#q` — documented anywhere?

``` % tar -tf bazel-out/k8-fastbuild-ST-4a519fd6d3e4/bin/base-layer.tar ./ ./downloaded ```

This workaround appears to work https://github.com/aryeh-looker/rules-docker-bug/commit/411ca18abaeae5a655069ae40d7e164171ef03a4

Tried `bazel clean --expunge` as well, but same issues

Related: https://github.com/powsybl/powsybl-core/issues/2300

Looks like this could cover it instead https://github.com/bazelbuild/rules_docker/blob/master/docker/util/README.md

Have also tried this, which fails: ``` load("@io_bazel_rules_docker//container:container.bzl", "container_image") container_image( name = "envoy", base = "@envoyproxy-distroless//image", ) container_image( name = "image", base = "@openjdk//image", layers = [ ":envoy", ], )...

Have also tried this, which succeeds, but within which I cannot find the envoy binary: ``` container_image( name = "envoy", base = "@envoyproxy-distroless//image", ) container_image( name = "image", base =...