This Docker image provides the necessary environment to build applications for Rust on ESP.
988
This Docker image provides the necessary environment to build applications in Rust for ESP.
# hadolint global ignore=DL3008,DL3015,DL3059
FROM rust:1.81.0-bookworm
RUN apt-get update && apt-get install -y \
git wget flex bison gperf python3 python3-pip python3-venv \
cmake ninja-build ccache libffi-dev libssl-dev libudev-dev dfu-util \
libusb-1.0-0 pkg-config nodejs && \
rm -rf /var/lib/apt/lists/* && \
cargo install espup && \
cargo install cargo-generate && \
espup install && \
cargo install ldproxy && \
cargo install espflash && \
mkdir -p /opt/esp
WORKDIR /opt/esp
CMD ["bash"]
Content type
Image
Digest
sha256:3f25cf367…
Size
1.4 GB
Last updated
about 2 years ago
docker pull ecw74/idf-rust