mirror of
https://github.com/rancher/os.git
synced 2025-08-10 02:58:15 +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"]
|