commit c3e4e199f7b2b01fb797362e6e1f82f59a17d127 Author: 0xFEEDC0DE64 Date: Wed Feb 3 18:27:01 2021 +0100 Initial commit diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..2f19a22 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM ubuntu:focal + +RUN apt update \ + && DEBIAN_FRONTEND=noninteractive apt install git-core cmake libusb-1.0-0 python3 python-is-python3 python3-virtualenv -y \ + && rm /var/lib/apt/lists/* /var/log/* -Rf + +RUN git clone https://github.com/0xFEEDC0DE64/esp-idf.git esp-idf \ + && ./esp-idf/install.sh \ + && rm -Rf esp-idf