From e21ccb913d7d61eb4ca2b12a11f882a5ba98d31d Mon Sep 17 00:00:00 2001 From: bobslept <38557801+bobslept@users.noreply.github.com> Date: Sat, 9 Sep 2023 21:41:55 +0200 Subject: [PATCH] feat: install base configs via rpm --- Containerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 9239ed6..ce69152 100644 --- a/Containerfile +++ b/Containerfile @@ -8,10 +8,12 @@ FROM ${BASE_IMAGE}:${FEDORA_MAJOR_VERSION} AS framework ARG BASE_IMAGE_NAME="${BASE_IMAGE_NAME:-silverblue}" ARG FEDORA_MAJOR_VERSION="${FEDORA_MAJOR_VERSION:-38}" -COPY usr /usr +COPY --from=ghcr.io/bobslept/config-framework:latest /rpms /tmp/rpms COPY framework-install.sh /tmp/framework-install.sh COPY framework-packages.json /tmp/framework-packages.json +RUN rpm-ostree install /tmp/rpms/*.rpm + RUN /tmp/framework-install.sh && \ systemctl enable tlp && \ systemctl enable fprintd && \