forked from GoogleContainerTools/distroless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchecksums.bzl
86 lines (80 loc) · 3.82 KB
/
checksums.bzl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# WARNING!!!
# DO NOT MODIFY THIS FILE DIRECTLY.
# TO GENERATE THIS RUN: ./updateWorkspaceSnapshots.sh
BASE_ARCHITECTURES = ["amd64", "arm64"]
# Exceptions:
# - s390x doesn't have libunwind8.
# https://github.com/GoogleContainerTools/distroless/pull/612#issue-500157699
# - ppc64le doesn't have stretch security-channel.
# https://github.com/GoogleContainerTools/distroless/pull/637#issuecomment-728139611
# - arm needs someone with available hardware to generate:
# //experimental/python3/ld.so.arm.cache
ARCHITECTURES = BASE_ARCHITECTURES + ["arm", "s390x", "ppc64le"]
VERSIONS = [
("debian10", "buster", "10"),
("debian11", "bullseye", "11"),
]
DEBIAN_SNAPSHOT = "20211224T032400Z"
DEBIAN_SECURITY_SNAPSHOT = "20211224T020327Z"
SHA256s = {
"amd64": {
"debian10": {
"main": "621d5053cc12eafc688e2c6f1ace9e421ad848c571a76d6bf3528183eec186f1",
"updates": "fb52db9beedcc50ad00b16a277844bd4d5e64a3d33e8c71b5c7e5663f1ce8e17",
"security": "4e3d82e20c0af70e3708fc26bdd22ad39fe19b5c5772f88290dbf77e1e16ddea",
},
"debian11": {
"main": "6d5509534097dd37bbcc2ed7bb18e117511395ac3812562abbe019b64071e1bf",
"updates": "0371261a6f2b14d136bebd8057f886e00b60edf7db27bca86a12bcbd049ac09c",
"security": "10949173831a0be7bc3ca8de0f4060e16a37282be35d2589ffdceab275219977",
},
},
"arm": {
"debian10": {
"main": "7dbc84e4745ad742cf239bbac8964bfa307e6a20abdfb5ed1cf1944ab69cfc21",
"updates": "fd8cbe658018c5af05ea32597ba90558663151700c35280af050f8b77bfea4cc",
"security": "ceb3eca5d176c4cd5a263d888703e5722f3137a91a2baba178e16ace820b7ff2",
},
"debian11": {
"main": "9f3c200daba0572b3c79f94f0215bd645b7b89e3c0fdf1c114aefce1e3ce76d4",
"updates": "11ba4ac708af50066372928c4c0573d81b339ac6df24d3a556fd8c4a85f13033",
"security": "2017b52344e7c6f5676dcd6da2648529fdd7540aa4236cb067c9353604fad4ab",
},
},
"arm64": {
"debian10": {
"main": "10a463a79f83b618d0fb1897b1907ef23a8c7a74f5d9a329a41370fe445b6c28",
"updates": "f5d43dc542d856d138947f0af5a2e82cfa3f9f20431030ab078aeceeb5a7f7c9",
"security": "92914c86cd7ac02c662696336f9f612b3cf667c20d75c84cc8ffebc58593cd71",
},
"debian11": {
"main": "66eca14926b41007cf7c2ca579f0b2d76f3c366f8b33ebcb6b9e55a640a8d41f",
"updates": "2d01324fd153e2d16b10a138b058bdcffc28d525a27d054535c233adf54c4378",
"security": "e2a67e8b62774f59727b5cecce2fd951b116992e1a8818b710929efe8af0a027",
},
},
"s390x": {
"debian10": {
"main": "2d4b7c1b6cecadba89499ff715fa184aa6322e0c1c04bf23a0dbc7b66c249e61",
"updates": "0293c6d36a9259f97e06861bc72e45a0fafde9af8cb3c10e7b54494c4c665068",
"security": "c213bcb8a1dc4d2dc600caee87ea39ff85d4210b88736f8141f18a8904f7113d",
},
"debian11": {
"main": "4ac7b273c9bad3295733ca768cc53851b08e22a5133b0798b3943bb91cf06884",
"updates": "12a75ff8e33bcb8f27ce61191c846d893399bceb05dffc4234a43177beda85ac",
"security": "d0e5fe5859d5fcd08b06ac89e15ce17a477cfb16bf8d126928941b1934fd0f1b",
},
},
"ppc64le": {
"debian10": {
"main": "a70a3b95fb120b6703a3116c9999af99a7dbf7413115465f11836d7eb0cf7bb2",
"updates": "a18dc313cd512528ddb0a7cb802a5ac3dae612cabced27b81a57ac4499acd4bb",
"security": "47913ce9bf3066c1ee7e6c835bebbb12a00ab297a223b1254cee91985913b576",
},
"debian11": {
"main": "c71cad8097b4a0b1a7b978bfa89679facc92cbf89982e1ac1d9cce0ffab86fcf",
"updates": "6970f7b4d8acdcb8494d7ea1cb1e427c984aabcaf17d9f5d95792fd41b931a1f",
"security": "d63538a80767d98c9757b4e686760e4dcfe63b21b402063fa610960a2b614f5e",
},
},
}