Sign inSign up

ecw74/idf-rust

By ecw74

Updated about 2 years ago

This Docker image provides the necessary environment to build applications for Rust on ESP.

Image
Languages & frameworks
Developer tools
0

988

ecw74/idf-rust repository overview

Docker Image to Build Rust ESP Binaries

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"]

Tag summary

Content type

Image

Digest

sha256:3f25cf367

Size

1.4 GB

Last updated

about 2 years ago

docker pull ecw74/idf-rust