-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContainerfile
More file actions
32 lines (24 loc) · 1.08 KB
/
Containerfile
File metadata and controls
32 lines (24 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Containerfile (Auto-generated from recipe.yml for Local Build)
# Base Image
FROM quay.io/fedora-ostree-desktops/cosmic-atomic:41
# --- 1. Copy Payload ---
COPY recipes/configs /etc/skel/.config
COPY recipes/etc /etc
COPY recipes/assets /opt/lupineos/assets
COPY recipes/scripts /opt/lupineos/scripts
# --- 2. Run Native Install Script ---
# This handles Repo Enabling + RPM Install + Binary Vending
RUN chmod +x /opt/lupineos/scripts/*.sh && /opt/lupineos/scripts/native_install.sh
# --- 3. Branding & Theming ---
COPY recipes/assets/wallpapers /usr/share/backgrounds/lupineos
COPY recipes/assets/plymouth/lupineos /usr/share/plymouth/themes/lupineos
RUN plymouth-set-default-theme lupineos
# --- 4. Applications ---
COPY recipes/bin/lupineos-welcome /usr/bin/lupineos-welcome
# --- 5. Systemd Units ---
COPY recipes/assets/systemd/lupineos-firstboot.service /usr/lib/systemd/system/lupineos-firstboot.service
# --- 6. Autostart ---
COPY recipes/assets/autostart /etc/xdg/autostart
# --- 7. Enable Services ---
RUN systemctl enable podman.socket && \
systemctl enable lupineos-firstboot.service