├── .circleci └── config.yml ├── .dockerignore ├── CHANGELOG.md ├── Dockerfile ├── Dockerfile.esp32 ├── Dockerfile.esp8266 ├── LICENSE ├── README.md └── cmd.sh /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suculent/arduino-docker-build/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .dccache 3 | .circleci -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suculent/arduino-docker-build/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suculent/arduino-docker-build/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.esp32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suculent/arduino-docker-build/HEAD/Dockerfile.esp32 -------------------------------------------------------------------------------- /Dockerfile.esp8266: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suculent/arduino-docker-build/HEAD/Dockerfile.esp8266 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suculent/arduino-docker-build/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suculent/arduino-docker-build/HEAD/README.md -------------------------------------------------------------------------------- /cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suculent/arduino-docker-build/HEAD/cmd.sh --------------------------------------------------------------------------------