less buildah, use fedora as base

This commit is contained in:
Julian Wefers
2026-05-30 22:30:10 +02:00
parent e3eae265f7
commit 8a96decfdc
3 changed files with 9 additions and 4 deletions
+2 -2
View File
@@ -2,18 +2,18 @@ REPO="gitea.wefers.page/julian/backup-server"
TAG="latest"
build() {
# ABSOLUTELY DO NOT USE --squash, as ostree NEEDS the layers
buildah build \
-t ${REPO}:${TAG} \
--pull \
--layers \
--squash \
--format oci \
.
if [ $? -eq 0 ]; then
buildah login gitea.wefers.page -u julian -p 278b81490079574229dce45b66b726d2ae7e83c0
buildah push \
--compression-format zstd:chunked \
--compression-format zstd \
"${REPO}:${TAG}"
fi