Dockerfile 719 B

12345678910111213141516
  1. FROM debian:stable
  2. MAINTAINER Émile Morel
  3. # U-boot part
  4. ENV DEBIAN_FRONTEND noninteractive
  5. ENV DEBCONF_NONINTERACTIVE_SEEN true
  6. ENV LC_ALL C
  7. ENV LANGUAGE C
  8. ENV LANG C
  9. RUN apt-get update
  10. RUN apt-get install --force-yes -y curl ncurses-dev u-boot-tools build-essential git vim libusb-1.0-0-dev pkg-config bc netpbm wget bzip2 debootstrap dpkg-dev qemu binfmt-support qemu-user-static apt-cacher device-tree-compiler
  11. RUN echo deb http://emdebian.org/tools/debian/ jessie main > /etc/apt/sources.list.d/emdebian.list
  12. RUN curl http://emdebian.org/tools/debian/emdebian-toolchain-archive.key | apt-key add -
  13. RUN dpkg --add-architecture armhf
  14. RUN apt-get update
  15. RUN apt-get install --force-yes -y crossbuild-essential-armhf