container/Dockerfile
JMARyA 9a44532b03
Some checks failed
ci/woodpecker/push/build Pipeline failed
docker
2025-04-17 12:00:04 +02:00

10 lines
No EOL
273 B
Docker

FROM git.hydrar.de/navos/navos:latest AS builder
COPY ./pacman.conf /pacman.conf
RUN pacman -Syu --noconfirm && pacman -S --noconfirm navinstall && yes | sudo pacman -Scc
RUN mkdir /os && navinstall create-tar /os
FROM scratch
COPY --from=builder /os/ /
CMD ["/bin/sh"]