From ae6a8b48de533537bee82c883e3b61d1dc9be3a3 Mon Sep 17 00:00:00 2001 From: "Jorge O. Castro" Date: Sat, 22 Apr 2023 16:48:23 -0400 Subject: [PATCH] fix: enable services in the correct place (#14) --- Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index 29cda90..9e77dfc 100644 --- a/Containerfile +++ b/Containerfile @@ -14,10 +14,10 @@ ARG FEDORA_MAJOR_VERSION="${FEDORA_MAJOR_VERSION}" ADD packages.json /tmp/packages.json ADD build.sh /tmp/build.sh -RUN systemctl enable lightdm -RUN systemctl enable ublue-lightdm-workaround RUN /tmp/build.sh && \ + systemctl enable lightdm && \ + systemctl enable ublue-lightdm-workaround && \ rm -rf /tmp/* /var/* && \ ostree container commit && \ mkdir -p /var/tmp && \