mirror of
https://github.com/rancher/os.git
synced 2025-07-17 08:31:02 +00:00
10 lines
234 B
Docker
10 lines
234 B
Docker
FROM debian:jessie
|
|
COPY ./scripts/installer /scripts
|
|
COPY ./scripts/version /scripts/
|
|
RUN /scripts/bootstrap
|
|
|
|
COPY ./dist/artifacts/vmlinuz /dist/vmlinuz
|
|
COPY ./dist/artifacts/initrd /dist/initrd
|
|
|
|
ENTRYPOINT ["/scripts/lay-down-os"]
|