mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
b679c95ddc
libpython2.7 was added to the container to allow running GDB built with Python 2.7 support and distributed as part of the cross-compiler toolchain. Now that we have a new release of GDB which works with Python 3.x, the GDB shipped with the cross-compiler is no longer used. Removing libpython2.7 should reduce the image size. This reverts commit be0372b1db36d2cb7d94e4baafb1772ea6e38452.
ESP-IDF Docker Image
This is a Docker image for the Espressif IoT Development Framework (ESP-IDF). It is intended for building applications and libraries with specific versions of ESP-IDF, when doing automated builds.
This image contains a copy of ESP-IDF and all the tools necessary to build ESP-IDF projects.
Tags
Multiple tags of this image are maintained:
latest
: tracksmaster
branch of ESP-IDFvX.Y
: corresponds to ESP-IDF releasevX.Y
release-vX.Y
: tracksrelease/vX.Y
branch of ESP-IDF
Basic Usage
Build a project located in the current directory using idf.py build
command:
docker run --rm -v $PWD:/project -w /project espressif/idf:latest idf.py build
Documentation
For more information about this image and the detailed usage instructions, please refer to the ESP-IDF Programming Guide page: IDF Docker Image.