micropython-esp32/Dockerfile

14 lines
513 B
Docker
Raw Normal View History

2022-03-15 08:30:48 +00:00
FROM espressif/idf:v4.3.2
2022-03-15 07:29:18 +00:00
ENV DEBIAN_FRONTEND=noninteractive
RUN : \
&& apt-get update \
&& apt-get install -y pkg-config \
&& apt-get autoremove -y \
&& rm -rf /var/lib/apt/lists/*
2022-03-15 14:44:15 +00:00
RUN git clone --depth 1 -b v1.17 https://github.com/micropython/micropython.git /src
2022-03-15 07:29:18 +00:00
RUN cd /src/mpy-cross && make
RUN cd /src/ports/unix && make submodules && make
RUN cd /src/ports/esp32 && bash -c "source /opt/esp/idf/export.sh && make"
RUN rm /src/ports/esp32/build-GENERIC/frozen_content.c
2022-03-15 07:29:18 +00:00
CMD /src/ports/unix/micropython