diff --git a/Containerfile b/Containerfile index 0e4144a..1e18f75 100644 --- a/Containerfile +++ b/Containerfile @@ -53,13 +53,15 @@ RUN --mount=type=bind,from=ctx,source=/,target=/ctx \ # COPY erstellt die Zielpfade automatisch, falls sie noch nicht existieren. COPY configs/bootc-fix.conf /etc/tmpfiles.d/ -# 2. Kopiere den Systemd-Override (mit der neuen Update-Logik) -COPY configs/bootc-override.conf /etc/systemd/system/bootc-fetch-apply-updates.service.d/override.conf +# 2. Kopiere den Systemd-Overrides (Update-Timer und -Service) +COPY configs/bootc-timer-override.conf /etc/systemd/system/bootc-fetch-apply-updates.timer.d/override.conf +COPY configs/bootc-service-override.conf /etc/systemd/system/bootc-fetch-apply-updates.service.d/override.conf # 3. Kopiere das Benachrichtigungs-Skript # Wichtig: Das Skript muss auf deinem Host bereits mit 'chmod +x' markiert sein! COPY scripts/notify-bootc-user.sh /usr/bin/ + ############################################################################### # LINTING ###############################################################################