From 81f0371f63ecfd1c3a91e13b086c546f5c67ebd2 Mon Sep 17 00:00:00 2001 From: Bananymous <68776844+Bananymous@users.noreply.github.com> Date: Tue, 11 Jul 2023 09:41:12 +0300 Subject: [PATCH] Fix typo in zephyr's Dockerfile.old (#2354) Dockerfile had command 'pip install --no-cache-doir' which caused the image build to fail. Fix this to correctly say '--no-cache-dir'. --- product-mini/platforms/zephyr/simple/Dockerfile.old | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product-mini/platforms/zephyr/simple/Dockerfile.old b/product-mini/platforms/zephyr/simple/Dockerfile.old index 633f3ea6..e223f315 100644 --- a/product-mini/platforms/zephyr/simple/Dockerfile.old +++ b/product-mini/platforms/zephyr/simple/Dockerfile.old @@ -35,7 +35,7 @@ WORKDIR /root/esp RUN git clone https://github.com/espressif/esp-idf.git WORKDIR /root/esp/esp-idf RUN git checkout v4.0 \ - && pip install --no-cache-doir virtualenv==16.7.12 \ + && pip install --no-cache-dir virtualenv==16.7.12 \ && git submodule update --init --recursive \ && ./install.sh esp32 esp32c3