blob: 9998a718015f14ba6b008a7631669413bf4de9ec (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
FROM debian:jessie
RUN echo 'deb http://deb.debian.org/debian jessie-backports main' > /etc/apt/sources.list.d/backports.list
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
|