File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed
Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ ARG IMAGE_REGISTRY=ghcr.io/ublue-os
2222
2323COPY cosign.pub /usr/share/ublue-os/cosign.pub
2424
25- RUN ln -sr /usr/bin/rpm-ostree /usr/bin/bootc
25+ # RUN ln -sr /usr/bin/rpm-ostree /usr/bin/bootc
2626
2727# Copy the bling from ublue-os/bling into tmp, to be installed later by the bling module
2828# Feel free to remove these lines if you want to speed up image builds and don't want any bling
@@ -39,7 +39,7 @@ COPY --from=ghcr.io/ublue-os/bling:latest /modules /tmp/modules/
3939# Custom modules overwrite defaults
4040COPY modules /tmp/modules/
4141
42- COPY --from=ublue-os/config /rpms /tmp/rpms
42+ COPY --from=ghcr.io/ ublue-os/config /rpms /tmp/rpms
4343RUN rpm-ostree install /tmp/rpms/*.rpm
4444
4545# `yq` is used for parsing the yaml configuration
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ name: server
44description : A minimal Fedora ostree base image
55
66# the base image to build on top of (FROM) and the version tag to use
7- base-image : ghcr.io/ublue-os/ucore
7+ base-image : ghcr.io/ublue-os/ucore-hci
88image-version : stable
99
1010# module configuration, executed in order
@@ -39,6 +39,9 @@ modules:
3939 # - devpod # https://devpod.sh/ as an rpm
4040
4141
42+ - type : script
43+ scripts :
44+ - enable-bootc.sh
4245
4346 - type : script
4447 scripts :
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+ set -xoue pipefail
3+
4+ ln -sr /usr/bin/rpm-ostree /usr/bin/bootc
You can’t perform that action at this time.
0 commit comments