9 lines
182 B
Docker
9 lines
182 B
Docker
FROM git.hydrar.de/navos/navos:latest AS builder
|
|
|
|
COPY ./pacman.conf /pacman.conf
|
|
RUN pacman -Syu navinstall
|
|
|
|
RUN navinstall create-tar /os
|
|
|
|
FROM scratch
|
|
COPY --from=builder /os/ /
|