1
0
mirror of https://github.com/rancher/os.git synced 2025-09-02 07:15:41 +00:00
Files
os/scripts/installer/Dockerfile.amd64

13 lines
325 B
Docker
Raw Normal View History

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