1234567891011121314151617181920212223242526 |
- FROM cryptech-builder:base
- # Stuff we need we need to build firmware and client packages. This
- # stuff is much more likely to change than the XiLinx tools, so we put
- # it at the end of the build where we can use normal Docker tooling.
- RUN apt-get update && \
- apt-get install -y \
- avr-libc \
- binutils-avr \
- debootstrap \
- distro-info-data \
- gcc-arm-none-eabi \
- gcc-avr \
- git \
- pbuilder \
- python-crypto \
- python-serial \
- python-yaml \
- reprepro \
- ubuntu-archive-keyring \
- ubuntu-dev-tools
- USER builder
- WORKDIR /home/builder
- CMD /bin/bash
|