f925d9ced4
This generates a docker image that contains a cached blob of RPMs, so it's easy to test compose tree. It's hacky and ugly, but it's better than nothing.
10 lines
142 B
Bash
Executable File
10 lines
142 B
Bash
Executable File
#!/bin/sh
|
|
set -xeuo pipefail
|
|
yum -y install rpm-ostree
|
|
cd /var/tmp
|
|
mkdir -p test
|
|
cd test
|
|
mkdir repo
|
|
ostree --repo=repo init --mode=bare-user
|
|
|