mirror of
https://github.com/rancher/os.git
synced 2025-09-19 00:59:53 +00:00
9 lines
256 B
Docker
9 lines
256 B
Docker
FROM alpine
|
|
RUN apk update && apk add coreutils util-linux bash parted syslinux e2fsprogs
|
|
COPY ./scripts/installer /scripts
|
|
COPY ./scripts/version /scripts/
|
|
|
|
COPY ./dist/artifacts/vmlinuz ./dist/artifacts/initrd /dist/
|
|
|
|
ENTRYPOINT ["/scripts/lay-down-os"]
|