1
0
mirror of https://github.com/rancher/os.git synced 2025-07-13 22:54:03 +00:00
os/scripts/installer/Dockerfile.amd64

13 lines
325 B
Docker
Raw Normal View History

2016-06-07 06:00:15 +00:00
FROM debian:jessie
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -y grub2 parted kexec-tools
2016-06-13 23:33:07 +00:00
COPY conf lay-down-os seed-data set-disk-partitions /scripts/
2016-06-07 06:00:15 +00:00
COPY ./build/vmlinuz /dist/vmlinuz
COPY ./build/initrd /dist/initrd
2016-06-13 23:33:07 +00:00
ARG VERSION
ENV VERSION=${VERSION}
2016-06-07 06:00:15 +00:00
ENTRYPOINT ["/scripts/lay-down-os"]