1
0
mirror of https://github.com/rancher/os.git synced 2025-07-06 19:38:37 +00:00

Merge pull request #1058 from ibuildthecloud/installer-size

Shrink installer a tiny bit
This commit is contained in:
Darren Shepherd 2016-06-28 15:58:21 -07:00 committed by GitHub
commit e360f6cd6a

View File

@ -1,10 +1,11 @@
FROM debian:jessie
FROM ubuntu:16.04
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -y grub2 parted kexec-tools
RUN apt-get update && \
apt-get install --no-install-recommends -y grub2 parted kexec-tools && \
rm -rf /var/lib/apt/*
COPY ./build/vmlinuz ./build/initrd /dist/
COPY conf lay-down-os seed-data set-disk-partitions /scripts/
COPY ./build/vmlinuz /dist/vmlinuz
COPY ./build/initrd /dist/initrd
ARG VERSION
ENV VERSION=${VERSION}