From e34aabaaede0508cec2a270334b1729e2ea05081 Mon Sep 17 00:00:00 2001 From: Juraj Michalek Date: Tue, 12 Oct 2021 15:36:01 +0200 Subject: [PATCH] container: moved to esp-rs/build-rust project --- Dockerfile | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 80257d7..0000000 --- a/Dockerfile +++ /dev/null @@ -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/ -