Dockerfile 279 B

12345678910111213
  1. ARG DOCKER_TAG=latest
  2. FROM espressif/idf:${DOCKER_TAG}
  3. ENV LC_ALL=C.UTF-8
  4. ENV LANG=C.UTF-8
  5. RUN apt-get update -y && apt-get install udev -y
  6. RUN echo "source /opt/esp/idf/export.sh > /dev/null 2>&1" >> ~/.bashrc
  7. ENTRYPOINT [ "/opt/esp/entrypoint.sh" ]
  8. CMD ["/bin/bash", "-c"]