Dockerfile 713 B

123456789101112131415161718192021222324
  1. FROM cryptech-builder:stage2
  2. RUN echo 'deb http://deb.debian.org/debian jessie-backports main' > /etc/apt/sources.list.d/backports.list
  3. # Stuff we need we need to build firmware and client packages. This
  4. # stuff is much more likely to change than the XiLinx tools, so we put
  5. # it at the end of the build where we can use normal Docker tooling.
  6. RUN apt-get update && \
  7. apt-get install -y \
  8. avr-libc \
  9. binutils-avr \
  10. gcc-arm-none-eabi \
  11. gcc-avr \
  12. git \
  13. python-crypto \
  14. python-serial \
  15. python-yaml \
  16. reprepro \
  17. ubuntu-archive-keyring \
  18. ubuntu-dev-tools \
  19. pbuilder && \
  20. apt-get -t jessie-backports install -y \
  21. debootstrap distro-info-data