From 0b96ebb4d161c449d4158612090ffab6658d65e0 Mon Sep 17 00:00:00 2001 From: gmpinder Date: Sun, 4 Jun 2023 11:00:55 -0400 Subject: [PATCH] Separate out usr directory copies --- Containerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 74ca45d..83f451a 100644 --- a/Containerfile +++ b/Containerfile @@ -29,7 +29,10 @@ ARG RECIPE=./recipe.yml # templates on immutable Fedora distros, whereas the normal "/etc" is ONLY meant # for manual overrides and editing by the machine's admin AFTER installation! # See issue #28 (https://github.com/ublue-os/startingpoint/issues/28). -COPY usr /usr +COPY usr/bin /usr/bin +COPY usr/lib /usr/lib +COPY usr/local /usr/local +COPY usr/share /usr/share # Copy the recipe that we're building. COPY ${RECIPE} /usr/share/ublue-os/recipe.yml