Remix.run Logo
mort96 2 hours ago

If that's the purpose, couldn't you store the hash and throw away the compressed image?

(As others said, compression is deterministic for the same algorithm, parameters and input data)

a_t48 2 hours ago | parent | next [-]

Zstd for example only promises determinism on the same version of the library. I've personally seen the hashes mutate between pull and export. Things like tar padding also make a difference. Really, the thing to do is to hash on the _uncompressed_ data and let compression be a transport/registry detail. That's what I've done, at least.

mort96 2 hours ago | parent [-]

I didn't know that about zstd, that's a bit unfortunate.

Tar isn't related here though, we're talking about compression not archival formats

cpuguy83 28 minutes ago | parent | prev [-]

The whole entire reason is compression is not deterministic across tooling.