This repo produces a container image that contains the Atkinson Hyperlegible Next font
It is intended to be COPYed into a derived bootc container image, like so:
FROM ghcr.io/perchnet/atkinson-next-oci:latest AS font
FROM ghcr.io/zirconium-dev/zirconium:latest
COPY --from=font / /
RUN ["fc-cache", "-rsfv"]Or you can use bluebuild:
name: image
base-image: ghcr.io/zirconium-dev/zirconium
image-version: latest
modules:
- type: copy
from: ghcr.io/perchnet/atkinson-next-oci:latest
src: /
dest: /
- type: script
snippets:
- "fc-cache -rsfv"