Dockerfile.arm64 581 B

1234567891011121314151617181920
  1. FROM aarch64/debian:jessie
  2. ENV DEBIAN_FRONTEND noninteractive
  3. ENV ARCH arm
  4. RUN apt-get update && apt-get install -y parted git gcc make autoconf
  5. RUN mkdir -p /usr/local/src && \
  6. cd /usr/local/src && \
  7. git clone -b kdump/v0.14 https://git.linaro.org/people/takahiro.akashi/kexec-tools.git && \
  8. cd kexec-tools && ./bootstrap && ./configure && make && make install
  9. COPY conf lay-down-os seed-data set-disk-partitions /scripts/
  10. COPY ./build/vmlinuz /dist/vmlinuz
  11. COPY ./build/initrd /dist/initrd
  12. ARG VERSION
  13. ENV VERSION=${VERSION}
  14. ENTRYPOINT ["/scripts/lay-down-os"]