particle-os-modules/Containerfile
2023-06-30 00:54:44 -03:00

16 lines
509 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
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