Skip to content

Commit

Permalink
Fix typo in zephyr's Dockerfile.old (#2354)
Browse files Browse the repository at this point in the history
Dockerfile had command 'pip install --no-cache-doir' which caused
the image build to fail. Fix this to correctly say '--no-cache-dir'.
  • Loading branch information
Bananymous committed Jul 11, 2023
1 parent 7448a99 commit 81f0371
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion product-mini/platforms/zephyr/simple/Dockerfile.old
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 81f0371

Please sign in to comment.