mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-04 10:25:25 +01:00
13 lines
307 B
Docker
13 lines
307 B
Docker
FROM local/stage0 as stage0
|
|
|
|
FROM debian as fetch
|
|
RUN apt update && apt install -y curl gcc
|
|
ADD . live-bootstrap
|
|
WORKDIR live-bootstrap
|
|
RUN ./download-distfiles.sh
|
|
RUN mv target/ /rootfs/
|
|
|
|
FROM scratch as build
|
|
COPY --from=fetch /rootfs .
|
|
ENV PATH=/bin
|
|
RUN ["/bootstrap-seeds/POSIX/x86/kaem-optional-seed"]
|