mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
* [wip] single sbom doc Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * fix tests Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * fix more tests Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * fix linting Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * update cli tests Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * remove scope in import path Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * swap SPDX tag-value formatter to single sbom document Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * bust CLI cache Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * update fixture to byte diff Signed-off-by: Christopher Angelo Phillips <christopher.phillips@anchore.com> * byte for byte Signed-off-by: Christopher Angelo Phillips <christopher.phillips@anchore.com> * bust the cache Signed-off-by: Christopher Angelo Phillips <christopher.phillips@anchore.com> * who needs cache Signed-off-by: Christopher Angelo Phillips <christopher.phillips@anchore.com> * add jar for testing Signed-off-by: Christopher Angelo Phillips <christopher.phillips@anchore.com> * no more bit flips Signed-off-by: Christopher Angelo Phillips <christopher.phillips@anchore.com> * update apk with the delta for image and directory cases Signed-off-by: Christopher Angelo Phillips <christopher.phillips@anchore.com> * restore cache workflow Signed-off-by: Christopher Angelo Phillips <christopher.phillips@anchore.com> Co-authored-by: Christopher Angelo Phillips <christopher.phillips@anchore.com>
24 lines
665 B
Bash
Executable File
24 lines
665 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eux
|
|
|
|
docker create --name generate-rpmdb-fixture centos:latest sh -c 'tail -f /dev/null'
|
|
|
|
function cleanup {
|
|
docker kill generate-rpmdb-fixture
|
|
docker rm generate-rpmdb-fixture
|
|
}
|
|
trap cleanup EXIT
|
|
|
|
docker start generate-rpmdb-fixture
|
|
docker exec -i --tty=false generate-rpmdb-fixture bash <<-EOF
|
|
mkdir -p /scratch
|
|
cd /scratch
|
|
rpm --initdb --dbpath /scratch
|
|
curl -sSLO https://github.com/wagoodman/dive/releases/download/v0.9.2/dive_0.9.2_linux_amd64.rpm
|
|
rpm --dbpath /scratch -ivh dive_0.9.2_linux_amd64.rpm
|
|
rm dive_0.9.2_linux_amd64.rpm
|
|
rpm --dbpath /scratch -qa
|
|
EOF
|
|
|
|
docker cp generate-rpmdb-fixture:/scratch/Packages .
|