1
0
mirror of https://github.com/rancher/os.git synced 2025-08-31 22:32:14 +00:00
Files
os/scripts/installer/Dockerfile.amd64

14 lines
364 B
Docker
Raw Normal View History

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