containers / BuildSourceImage

Tool to build a source image based on an existing OCI image
GNU General Public License v2.0
29 stars 14 forks source link

BUG: a couple of layer annotations are put at top-level #65

Closed vbatts closed 4 years ago

vbatts commented 4 years ago

here, the annotation com.redhat.layer.type, com.redhat.layer.content.checksum, and com.redhat.layer.content not attached to their corresponding layer, but put at top-level of the document. Presumably clobbering themselves on each layer update.

{ 
  "com.redhat.layer.type": "source",
  "com.redhat.layer.content": "basesystem-10.0-7.el7.centos.src.rpm",
  "com.redhat.layer.content.checksum": "sha256:8731e2c6d61bdebe2ac2301fdd80ea3223830f2b37c04511a48820f3b8b68b55",
  "schemaVersion": 2,
  "config": {
    "mediaType": "application/vnd.oci.image.config.v1+json",
    "digest": "sha256:6083b2ea7b049ca9cc1d4708c160aec7a145960207be3c7bea19bec7e46f1ed1",
    "size": 948
  },
  "layers": [
    { 
      "mediaType": "application/vnd.oci.image.layer.v1.tar",
      "size": 20480,
      "digest": "sha256:f24d714aee6b35aa16ddd892d3b789678e703ca09fa64ecf966ca1c58a388c62",
      "annotations": {
        "source.artifact.filename": "basesystem-10.0-7.el7.centos.src.rpm",
        "source.artifact.name": "basesystem",
        "source.artifact.version": "10.0",
        "source.artifact.epoch": "10.0",
        "source.artifact.release": "7.el7.centos",
        "source.artifact.mimetype": "application/x-rpm",
        "source.artifact.pkgid": "d5194181f6f572552e89e2d721612492",
        "source.artifact.buildtime": "1403865430"
      }     
    },
    { 
      "mediaType": "application/vnd.oci.image.layer.v1.tar",
      "size": 20480,
      "digest": "sha256:4b6016d4b66e9cfd6a3731e22ac3805b648ddd06e2b13c9530475409ee3e3514",
      "annotations": {
        "source.artifact.filename": "rootfiles-8.1-11.el7.src.rpm",
        "source.artifact.name": "rootfiles",
        "source.artifact.version": "8.1",
        "source.artifact.epoch": "8.1",
        "source.artifact.release": "11.el7",
        "source.artifact.mimetype": "application/x-rpm",
        "source.artifact.pkgid": "e1cca1fe49265b419a01a686194406ef",
        "source.artifact.buildtime": "1402344692"
      }
    },
 [...]