Lightweight docker image built on top of alpine with installed AVR toolchain and few additional tools:
- avr-gcc toolchain (>= v10)
- avr-libc
- avrdude
- make
- cmake
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
$ avr-toolchain flash