17 lines
No EOL
641 B
Docker
17 lines
No EOL
641 B
Docker
FROM quay.io/fedora/fedora-bootc:41
|
|
|
|
#include unit files and containers
|
|
ADD etc etc
|
|
#ADD usr usr
|
|
|
|
#add additional software
|
|
#RUN dnf install -y cockpit cockpit-podman cockpit-storaged cockpit-ws git lm_sensors sysstat tuned vim-enhanced bash-completion && dnf clean all
|
|
RUN dnf group install -y swaywm swaywm-extended && dnf install -y go && dnf clean all
|
|
|
|
#enable desired units
|
|
#RUN systemctl enable lm_sensors sysstat tuned fstrim.timer podman.socket podman-auto-update.timer cockpit.socket
|
|
|
|
RUN rm -rf /tmp/* /var/* && \
|
|
mkdir -p /var/tmp && chmod -R 1777 /var/tmp && \
|
|
ostree container commit && \
|
|
bootc container lint || true |