diff --git a/Dockerfile b/Dockerfile index 28cf807..70ae193 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM ubuntu:focal +FROM ubuntu:latest RUN apt update \ - && DEBIAN_FRONTEND=noninteractive apt install git-core cmake libusb-1.0-0 python3 python-is-python3 python3-virtualenv ccache -y \ + && DEBIAN_FRONTEND=noninteractive apt install git-core cmake libusb-1.0-0 python3 python-is-python3 python3-pip python3-virtualenv ccache -y \ && rm /var/lib/apt/lists/* /var/log/* -Rf RUN git clone https://github.com/espressif/esp-idf.git esp-idf \ diff --git a/README.md b/README.md new file mode 100644 index 0000000..d09019d --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +# Docker image to build esp32 firmwares with the esp-idf + +``` +docker build . -t 0xfeedc0de64/esp-idf-build-environment:v5.0-dev-1093 +docker push 0xfeedc0de64/esp-idf-build-environment:v5.0-dev-1093 +```