Containerfile.base: Work around rpmdb location

This took me an unreasonably long time to figure out.
See https://github.com/coreos/rpm-ostree/issues/3397

Signed-off-by: Colin Walters <walters@verbum.org>
This commit is contained in:
Colin Walters 2025-02-07 13:19:45 -05:00
parent aae17241d8
commit 468b413481
1 changed files with 2 additions and 0 deletions

View File

@ -8,6 +8,8 @@
# If you want to configure the input rpm-md repositories, just override this # If you want to configure the input rpm-md repositories, just override this
# container image. # container image.
FROM quay.io/fedora/fedora:rawhide as repos FROM quay.io/fedora/fedora:rawhide as repos
# See https://github.com/coreos/rpm-ostree/issues/3397
RUN ln -sr /usr/lib/sysimage/rpm /usr/share/rpm
# BOOTSTRAPPING: This can be any image that has the following packages. # BOOTSTRAPPING: This can be any image that has the following packages.
FROM registry.gitlab.com/fedora/bootc/base-images-dev/fedora-bootc-dev:rawhide as builder FROM registry.gitlab.com/fedora/bootc/base-images-dev/fedora-bootc-dev:rawhide as builder