-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into alpine-initrd
Signed-off-by: Itxaka <[email protected]>
- Loading branch information
Showing
8 changed files
with
76 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,5 +25,8 @@ | |
}, | ||
{ | ||
"flavor": "rockylinux" | ||
}, | ||
{ | ||
"flavor": "almalinux" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
ARG BASE_IMAGE=almalinux:latest | ||
|
||
FROM $BASE_IMAGE | ||
|
||
RUN echo "install_weak_deps=False" >> /etc/dnf/dnf.conf | ||
|
||
RUN dnf install -y epel-release && dnf clean all | ||
RUN dnf update -y | ||
RUN dnf makecache | ||
RUN dnf install -y \ | ||
dracut-live \ | ||
livecd-tools \ | ||
dracut-squash \ | ||
dracut-network \ | ||
efibootmgr \ | ||
audit \ | ||
device-mapper \ | ||
dosfstools \ | ||
dracut \ | ||
dracut-live \ | ||
dracut-network \ | ||
dracut-squash \ | ||
e2fsprogs \ | ||
efibootmgr \ | ||
gawk \ | ||
grub2 \ | ||
grub2-efi-x64 \ | ||
grub2-efi-x64-modules \ | ||
grub2-pc \ | ||
kernel \ | ||
kernel-modules \ | ||
kernel-modules-extra \ | ||
livecd-tools \ | ||
lvm2 \ | ||
nano \ | ||
openssh-server \ | ||
parted \ | ||
polkit \ | ||
rsync \ | ||
shim-x64 \ | ||
squashfs-tools \ | ||
sudo \ | ||
systemd \ | ||
systemd-networkd \ | ||
systemd-resolved \ | ||
systemd-timesyncd \ | ||
tar \ | ||
which \ | ||
epel-release \ | ||
https://zfsonlinux.org/epel/zfs-release-2-2.el9.noarch.rpm \ | ||
rsync && dnf clean all | ||
|
||
RUN mkdir -p /run/lock | ||
RUN touch /usr/libexec/.keep | ||
RUN systemctl enable [email protected] | ||
RUN systemctl enable [email protected] | ||
RUN systemctl enable [email protected] | ||
RUN systemctl enable systemd-networkd | ||
RUN systemctl enable systemd-resolved | ||
RUN systemctl disable dnf-makecache.service | ||
RUN systemctl enable sshd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,6 @@ RUN dnf install -y epel-release && dnf clean all | |
RUN dnf update -y | ||
RUN dnf makecache | ||
RUN dnf install -y \ | ||
NetworkManager \ | ||
squashfs-tools \ | ||
dracut-live \ | ||
livecd-tools \ | ||
dracut-squash \ | ||
|
@@ -35,7 +33,6 @@ RUN dnf install -y \ | |
livecd-tools \ | ||
lvm2 \ | ||
nano \ | ||
NetworkManager \ | ||
openssh-server \ | ||
parted \ | ||
polkit \ | ||
|
@@ -61,5 +58,4 @@ RUN systemctl enable [email protected] | |
RUN systemctl enable systemd-networkd | ||
RUN systemctl enable systemd-resolved | ||
RUN systemctl disable dnf-makecache.service | ||
RUN systemctl disable NetworkManager | ||
RUN systemctl enable sshd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters