generated from ublue-os/image-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContainerfile
28 lines (20 loc) · 888 Bytes
/
Containerfile
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
# FROM ghcr.io/ublue-os/base-main:latest
## Other possible base images include:
# FROM ghcr.io/ublue-os/bazzite:stable
FROM ghcr.io/ublue-os/bluefin-dx:stable
#
# ... and so on, here are more base images
# Universal Blue Images: https://github.com/orgs/ublue-os/packages
# Fedora base image: quay.io/fedora/fedora-bootc:41
# CentOS base images: quay.io/centos-bootc/centos-bootc:stream10
### MODIFICATIONS
## make modifications desired in your image and install packages by modifying the build.sh script
## the following RUN directive does all the things required to run "build.sh" as recommended.
COPY hypr.sh /tmp/hypr.sh
RUN mkdir -p /var/lib/alternatives && \
/tmp/hypr.sh && \
ostree container commit
# COPY hyprblue/ /etc/hyprblue/
# RUN ln -s /etc/hyprblue/hypr/ /etc/skel/.config/hypr/
# COPY uwsm-hypr.sh /etc/profile.d/uwsm-hypr.sh
# RUN ostree container commit