From 626aa9f4ca752e68932187c6ef7cac49fcc37ce7 Mon Sep 17 00:00:00 2001 From: timoxd7 Date: Wed, 28 Feb 2024 10:31:32 +0100 Subject: [PATCH] ci(docker): Added get_idf alias to .bashrc --- tools/docker/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile index e9f4516882..5c6f33a1a5 100644 --- a/tools/docker/Dockerfile +++ b/tools/docker/Dockerfile @@ -91,6 +91,9 @@ RUN : \ && rm -rf $IDF_TOOLS_PATH/dist \ && : +# Add get_idf as alias +RUN echo 'alias get_idf=". /opt/esp/idf/export.sh"' >> /root/.bashrc + # The constraint file has been downloaded and the right Python package versions installed. No need to check and # download this at every invocation of the container. ENV IDF_PYTHON_CHECK_CONSTRAINTS=no