particle-os-modules/Containerfile
lili c091364c3d
feat: add ubuntu and inter fonts + fix slow cloning for nerdfonts
fixes: [fonts] can we repackage Nerdfonts #3 [nix] install and uninstall scripts #2
2023-06-28 23:11:20 -03:00

17 lines
542 B
Docker

FROM registry.fedoraproject.org/fedora:latest AS builder
RUN dnf update -y && dnf install --disablerepo='*' --enablerepo='fedora,updates' --setopt install_weak_deps=0 --nodocs --assumeyes git wget unzip && dnf clean all
RUN mkdir -p /tmp/ublue-os/files/{etc,usr} && mkdir /tmp/ublue-os/rpms
COPY usr /tmp/ublue-os/files/usr
COPY etc /tmp/ublue-os/files/etc
ADD fetch.sh /tmp/fetch.sh
RUN chmod +x /tmp/fetch.sh && \
/tmp/fetch.sh
FROM scratch
COPY --from=builder /tmp/ublue-os/files /files
COPY --from=builder /tmp/ublue-os/rpms /rpms