Merge pull request #5 from rhatdan/source

Do not compress source code images
This commit is contained in:
Daniel J Walsh 2019-07-22 07:23:54 -04:00 committed by GitHub
commit 8e1048f23f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,7 +35,7 @@ for i in ${SRC_RPMS}; do
echo "Adding $i"
touch --date='@0' $i
buildah add --add-history ${SRC_CTR} $i /RPMS
export IMG=$(buildah commit --rm ${SRC_CTR} $i)
export IMG=$(buildah commit --disable-compression --rm ${SRC_CTR} $i)
export SRC_CTR=$(buildah from ${IMG})
done
popd