Dockerfile.dapper 770 B

1234567891011121314151617181920
  1. FROM debian:jessie
  2. ENV DAPPER_RUN_ARGS --privileged
  3. ENV DAPPER_OUTPUT dist
  4. RUN apt-get update -y
  5. RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
  6. ca-certificates curl dosfstools tree zip
  7. RUN mkdir -p /source/assets
  8. # RancherOS for ARM
  9. RUN curl -fL https://releases.rancher.com/os/latest/rootfs_arm.tar.gz > /source/assets/rootfs_arm.tar.gz
  10. # Hypriot Kernel 4.1.17+ and bootfiles for RPi2
  11. RUN curl -fL http://downloads.hypriot.com/raspberrypi-bootloader_20160212-075712_armhf.deb > /source/assets/raspberrypi-bootloader_20160212-075712_armhf.deb
  12. # Bootfiles to support Raspberry Pi 3 B
  13. RUN curl -fL http://downloads.hypriot.com/rpi3-bootfiles.tar.gz > /source/assets/rpi3-bootfiles.tar.gz
  14. WORKDIR /source
  15. CMD ["./scripts/build.sh"]