container/Dockerfile
JMARyA b7c9a84dfb
Some checks failed
ci/woodpecker/push/build Pipeline failed
update
2025-04-17 17:09:20 +02:00

13 lines
No EOL
295 B
Docker

ARG TARGETARCH
FROM git.hydrar.de/navos/navos:latest
# Download rootfs
wget -O - "https://navos.hydrar.de/rootfs/${TARGETARCH}/rootfs.tar.xz" | tar --numeric-owner --xattrs --acls -xf - -C /os
# Copy
FROM scratch
COPY --from=builder /os/ /
# Update
RUN pacman -Syu --noconfirm
CMD ["/bin/sh"]