diff options
author | Rob Austein <sra@hactrn.net> | 2019-02-10 22:46:35 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2019-02-10 22:46:35 +0000 |
commit | 8bf92fa91b9ffec90ce4968f1898d0864c7c5b12 (patch) | |
tree | 68e7435d45a714ada8e03f96f439f576de7f440b /Dockerfile |
Initial commit.
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..9998a71 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,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 |