Skip to content
This repository has been archived by the owner on Jan 20, 2022. It is now read-only.

Commit

Permalink
Fix some incorrect base image hashes for arm64
Browse files Browse the repository at this point in the history
This was causing the arm64 image to not work.
  • Loading branch information
justinsb committed Dec 4, 2020
1 parent 9951510 commit 5b36fe6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -222,31 +222,31 @@ http_file(
container_pull(
name = "distroless-base-amd64",
architecture = "amd64",
digest = "sha256:abe4b6cd34fed3ade2e89ed1f2ce75ddab023ea0d583206cfa4f960b74572c67",
digest = "sha256:3d0daa49182f9eb6796e8f5e47387e11d3b61e8c118e6fffedfa5fdc6e353cc4",
registry = "gcr.io/distroless",
repository = "base-debian10",
)

container_pull(
name = "distroless-base-amd64-debug",
architecture = "amd64",
digest = "sha256:ef82640400a9f1623813bd32cf23de4db317086bddcda1f4b1787a4ab57ec319",
digest = "sha256:bc7547acdc118fdbb9516e11988ef391151aa367f63d748a7997640f624d7495",
registry = "gcr.io/distroless",
repository = "base-debian10",
)

container_pull(
name = "distroless-base-arm64",
architecture = "arm64",
digest = "sha256:abe4b6cd34fed3ade2e89ed1f2ce75ddab023ea0d583206cfa4f960b74572c67",
digest = "sha256:7c6c26ae988a6e2fcbdddd798644245c6effd9e6375ec2679599d71cdffc3e02",
registry = "gcr.io/distroless",
repository = "base-debian10",
)

container_pull(
name = "distroless-base-arm64-debug",
architecture = "arm64",
digest = "sha256:ef82640400a9f1623813bd32cf23de4db317086bddcda1f4b1787a4ab57ec319",
digest = "sha256:fe081a649b63147009c1bd32d65da1f399d214420e9497b8fe383ecbcc2ce60d",
registry = "gcr.io/distroless",
repository = "base-debian10",
)
Expand Down

0 comments on commit 5b36fe6

Please sign in to comment.