-
tl;dr I tried to rebuild wait-for-it with apko and wasn't able to. Where does apko actually retrieve the source or package from? I'm guessing there's an internal repository that isn't shown in the GitHub Actions or Terraform configuration. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Apologies for the slow reply! To build our images, you need to use apko e.g:
That should work and you can then use Our image configs used to specify the repository and signing key explicitly, but now these need to be supplied on the command line. |
Beta Was this translation helpful? Give feedback.
-
You can also download an attestation off of all of our images now, which contains the fully resolved / locked configuration the image was built with, see this post: https://www.chainguard.dev/unchained/reproducing-chainguards-reproducible-image-builds |
Beta Was this translation helpful? Give feedback.
Apologies for the slow reply!
To build our images, you need to use apko e.g:
That should work and you can then use
docker load < out.tar
to use the image with Docker.Our image configs used to specify the repository and signing key explicitly, but now these need to be supplied on the command line.