uphy-20241229/Containerfile
2024-12-14 21:19:29 -05:00

25 lines
531 B
Docker

FROM ghcr.io/ublue-os/base-main:latest
## Nvidia users use this instead
# FROM ghcr.io/ublue-os/base-nvidia:latest
## Install a Desktop
# Use `dnf5 group list` to see possible group packages to install, or choose them individually
RUN dnf5 group install kde-desktop kde-apps
## Install applications
# Anything in Fedora
RUN dnf5 install vlc
## Add COPRs
# RUN dnf copr enable (copr-author/name)
# RUN dnf5 install thing-from-copr
## Manage services
# systemctl enable foo.service
## Final command
RUN bootc container lint