mirror of
https://github.com/kairos-io/osbuilder.git
synced 2025-07-31 23:25:20 +00:00
Revert to using leap as base image for tool image
Signed-off-by: Itxaka <itxaka@kairos.io>
This commit is contained in:
parent
32cd7c76cb
commit
7813c2eec4
@ -1,23 +1,18 @@
|
||||
# https://quay.io/repository/kairos/packages?tab=tags&tag=latest
|
||||
ARG FEDORA_VERSION=40
|
||||
ARG LEAP_VERSION=15.5
|
||||
ARG LUET_VERSION=0.35.0
|
||||
ARG ENKI_VERSION=v0.0.17-rc2
|
||||
|
||||
FROM quay.io/luet/base:$LUET_VERSION AS luet
|
||||
FROM quay.io/kairos/enki:${ENKI_VERSION} as enki
|
||||
|
||||
FROM fedora:$FEDORA_VERSION as default
|
||||
RUN dnf -y update
|
||||
FROM opensuse/leap:$LEAP_VERSION as default
|
||||
RUN zypper ref && zypper dup -y
|
||||
## ISO+ Arm image + Netboot + cloud images Build depedencies
|
||||
RUN dnf in -y bc qemu-tools jq genisoimage docker git curl gdisk kpartx sudo xfsprogs parted e2fsprogs curl \
|
||||
util-linux udev rsync grub2 dosfstools mtools xorriso lvm2 zstd sbsigntools squashfs-tools openssl \
|
||||
python3-cryptography python3-pefile # ukify deps
|
||||
# systemd-ukify systemd-boot
|
||||
# Install grub2-efi-x64 only on x86 arches
|
||||
RUN if [ "$(uname -m)" == "x86_64" ]; then dnf install -y grub2-efi-x64; fi
|
||||
# Install grub2-efi-arm64 only on arm64 arches
|
||||
RUN if [ "$(uname -m)" == "aarch64" ]; then dnf install -y grub2-efi-aa64; fi
|
||||
|
||||
RUN zypper ref && zypper in -y bc qemu-tools jq cdrtools docker git curl gptfdisk kpartx sudo xfsprogs parted \
|
||||
util-linux-systemd e2fsprogs curl util-linux udev rsync grub2 dosfstools grub2-x86_64-efi squashfs mtools xorriso lvm2 zstd
|
||||
RUN zypper in -y python311-pip python311-cryptography sbsigntools tpm2-* # ukify deps
|
||||
RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.11 1 # make python3.11 the default python3 for ukify
|
||||
COPY --from=luet /usr/bin/luet /usr/bin/luet
|
||||
ENV LUET_NOLOCK=true
|
||||
ENV TMPDIR=/tmp
|
||||
@ -35,6 +30,8 @@ RUN luet install --config /tmp/luet-amd64.yaml -y system/systemd-boot
|
||||
RUN luet install --config /tmp/luet-arm64.yaml -y system/systemd-boot
|
||||
# ukify + measure
|
||||
RUN luet install -y system/systemd-ukify
|
||||
# ukify deps that are not in the suse repos as packages. ukify package provides this so we have the exact versions needed
|
||||
RUN pip3 install -r /usr/kairos/ukify-requirements.txt
|
||||
|
||||
## Live CD artifacts
|
||||
RUN luet install -y livecd/grub2 --system-target /grub2
|
||||
|
@ -12,4 +12,4 @@ repositories:
|
||||
priority: 2
|
||||
urls:
|
||||
- "quay.io/kairos/packages"
|
||||
reference: 20240215113356-repository.yaml
|
||||
reference: 20240219135130-repository.yaml
|
||||
|
@ -12,4 +12,4 @@ repositories:
|
||||
priority: 2
|
||||
urls:
|
||||
- "quay.io/kairos/packages-arm64"
|
||||
reference: 20240215133500-repository.yaml
|
||||
reference: 20240219145903-repository.yaml
|
||||
|
Loading…
Reference in New Issue
Block a user