blob: 0cf505cea78665aaa738ca0acce24a3db4b429f7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
FROM cryptech-builder:stage3
RUN echo 'deb http://deb.debian.org/debian jessie-backports main' > /etc/apt/sources.list.d/backports.list
# An assortment of normal Debian packages. Might want to move this to
# after the horrible XiLinx stuff so we don't have to redo that very often.
RUN apt-get update \
&& \
apt-get install -y \
avr-libc \
binutils-avr \
gcc-arm-none-eabi \
gcc-avr \
git \
python-crypto \
python-serial \
python-yaml \
reprepro \
ubuntu-archive-keyring \
ubuntu-dev-tools \
pbuilder \
&& \
apt-get -t jessie-backports install -y \
debootstrap distro-info-data
|