Lightweight docker image built on top of alpine:3.10 with installed AVR toolchain and few additional tools:
- AVR8 toolchain (2019, AVR_8_bit_GNU_Toolchain_3.6.2_1759)
- avrdude (v6.3)
- make (v4.2)
- cmake (v3.14)
DockerHub: https://hub.docker.com/r/lpodkalicki/avr-toolchain
git clone git@github.com:lpodkalicki/avr-toolchain-docker.git
cd avr-toolchain
docker build --rm -t lpodkalicki/avr-toolchain:latest .
docker run --rm --privileged -v $(pwd):/build lpodkalicki/avr-toolchain avr-gcc -version
Bellow you can find recommended simple one-line installer that pulls the newest docker-image and installs avr-toolchain script into "/usr/bin/" directory.
curl https://raw.githubusercontent.com/lpodkalicki/avr-toolchain-docker/master/install.sh | bash -s --
- Install toolchain using recommended simple one-line installer.
- Use super command avr-toolchain for all toolchain binaries.
- Execute toolchain binaries inside your working/project directory.
$ cd your-project/
$ avr-toolchain avr-gcc --version
$ avr-toolchain make -version
$ avr-toolchain avrdude --help
$ avr-toolchain cmake -version
$ avr-toolchain make && make flash