container: moved to esp-rs/build-rust project

This commit is contained in:
Juraj Michalek 2021-10-12 15:36:01 +02:00
parent fc7d7026e9
commit e34aabaaed
1 changed files with 0 additions and 17 deletions

View File

@ -1,17 +0,0 @@
FROM espressif/idf-rust
# Some tools to make life with examples easier
RUN apt update \
&& apt install -y vim nano
# Dependency for Cargo first example
RUN cargo install cargo-pio ldproxy espflash
COPY support/idf-rust-examples/entrypoint.sh /opt/esp/entrypoint.sh
COPY support/idf-rust-examples/motd /etc/motd
RUN if [ ! -e /opt/rust-esp32-example ]; then git clone https://github.com/espressif/rust-esp32-example.git /opt/rust-esp32-example; fi \
&& git clone https://github.com/ivmarkov/rust-esp32-std-hello.git /opt/rust-esp32-std-hello
WORKDIR /opt/