10 lines
349 B
Docker
10 lines
349 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt update \
|
|
&& DEBIAN_FRONTEND=noninteractive apt install git-core cmake libusb-1.0-0 python3 python-is-python3 python3-pip python3-virtualenv python3-venv ccache -y \
|
|
&& rm /var/lib/apt/lists/* /var/log/* -Rf
|
|
|
|
RUN git clone https://github.com/espressif/esp-idf.git esp-idf \
|
|
&& ./esp-idf/install.sh \
|
|
&& rm -Rf esp-idf
|