1
0
mirror of https://github.com/rancher/os.git synced 2025-06-26 15:01:34 +00:00
os/scripts/installer/Dockerfile.amd64

14 lines
359 B
Docker
Raw Normal View History

2016-06-28 22:28:51 +00:00
FROM ubuntu:16.04
2016-06-07 06:00:15 +00:00
ENV DEBIAN_FRONTEND noninteractive
2016-06-28 22:28:51 +00:00
RUN apt-get update && \
apt-get install --no-install-recommends -y grub2 parted kexec-tools && \
rm -rf /var/lib/apt/*
2016-06-07 06:00:15 +00:00
2016-06-28 22:28:51 +00:00
COPY ./build/vmlinuz ./build/initrd /dist/
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
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"]