No description
Find a file
Vincent Batts 56fd7c4de9
*: big rewrite
_(this is a WIP)_

for the requirements to not be so bound to RPM only, breaking collection
of sources out into "plugins". Currently not much more sophisticated
than just iterating through bash functions that expect 3 argugments.
rootfs of the inspectee; output path for the sources collected; manifest
path.
The idea for the manifest is still loose, but how best to follow up the
plugin which collected source, to then have the rich metadata available
to attach to the individual "layers" that are produced for each source
component.

for the requirement of most contrained non-root container running this
script as non-root, we'll switch away from buildah for now. This ought
to just be skopeo copy, unpacking, inspecting, json, and skopeo copy. No
mounting, no namespacing, etc.

for the sake of writing unit tests (i.e. `bats`), break the script into
a way that it can be sourced and run the functions individually. Only
act like the whole script when run directly.

If `umoci` is available it will get used for some functions (like
unpacking), but it is not required and will be attempted with jq and
bash otherwise.

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2019-09-10 09:08:19 -04:00
BuildSourceImage.sh *: big rewrite 2019-09-10 09:08:19 -04:00
Dockerfile *: big rewrite 2019-09-10 09:08:19 -04:00
LICENSE Initial commit 2019-07-12 14:36:52 -04:00
README.md Initial Version 2019-07-12 14:47:11 -04:00

BuildSourceImage

Tool to build a source image based on an existing OCI image

This script uses BUILDAH to build source code container images based on existing OCI images.

The goal is to make retrieving the source code used to make a container image easier for users to obtain, using the standard OCI protocols and image formats.