RoyalOughtness
RoyalOughtness
BBlueBuild
Created by RoyalOughtness on 11/14/2024 in #questions
Can we `brew install` after using the brew module?
To install brew packages into the image?
10 replies
BBlueBuild
Created by RoyalOughtness on 11/12/2024 in #questions
Is there a way to run Pull Request builds?
Sort of like how bluefin does it, where uploads and signing are disabled, but everything else runs
24 replies
BBlueBuild
Created by RoyalOughtness on 10/14/2024 in #questions
%OS_VERSION% in containerfile snippets?
Is there a way to use the release version in a containerfile snippet? For example:
modules:
- type: containerfile
snippets:
- COPY --from=ghcr.io/ublue-os/akmods:main-41 /rpms/ /tmp/rpms
- RUN find /tmp/rpms
- RUN rpm -q ublue-os-akmods-addons || rpm-ostree install /tmp/rpms/ublue-os/ublue-os-akmods*.rpm
modules:
- type: containerfile
snippets:
- COPY --from=ghcr.io/ublue-os/akmods:main-41 /rpms/ /tmp/rpms
- RUN find /tmp/rpms
- RUN rpm -q ublue-os-akmods-addons || rpm-ostree install /tmp/rpms/ublue-os/ublue-os-akmods*.rpm
instead of a specific release, I want something like:
modules:
- type: containerfile
snippets:
- COPY --from=ghcr.io/ublue-os/akmods:main-%%OS_RELEASE%% /rpms/ /tmp/rpms
- RUN find /tmp/rpms
- RUN rpm -q ublue-os-akmods-addons || rpm-ostree install /tmp/rpms/ublue-os/ublue-os-akmods*.rpm
modules:
- type: containerfile
snippets:
- COPY --from=ghcr.io/ublue-os/akmods:main-%%OS_RELEASE%% /rpms/ /tmp/rpms
- RUN find /tmp/rpms
- RUN rpm -q ublue-os-akmods-addons || rpm-ostree install /tmp/rpms/ublue-os/ublue-os-akmods*.rpm
24 replies