1
0
mirror of https://github.com/rancher/os.git synced 2025-06-24 22:11:33 +00:00
os/scripts/installer/Dockerfile.amd64

14 lines
364 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 && \
2016-06-30 06:51:05 +00:00
apt-get install --no-install-recommends -y udev grub2 parted kexec-tools && \
2016-06-28 22:28:51 +00:00
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"]