mirror of
https://github.com/rancher/os.git
synced 2025-07-13 06:34:04 +00:00
12 lines
296 B
Docker
12 lines
296 B
Docker
FROM debian:jessie
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
RUN apt-get update && apt-get install -y grub2 parted
|
|
|
|
COPY ./scripts/installer /scripts
|
|
COPY ./build.conf /scripts/
|
|
|
|
COPY ./dist/artifacts/vmlinuz /dist/vmlinuz
|
|
COPY ./dist/artifacts/initrd /dist/initrd
|
|
|
|
ENTRYPOINT ["/scripts/lay-down-os"]
|