Skip to content

Commit

Permalink
python: download all requirement files
Browse files Browse the repository at this point in the history
Requirements were split, so download them all before we install.

Fixes zephyrproject-rtos#24
Signed-off-by: Anas Nashif <[email protected]>
  • Loading branch information
nashif committed Mar 20, 2020
1 parent 55a6d98 commit 7588f5c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,11 @@ ENV LC_ALL en_US.UTF-8


RUN wget -q https://raw.githubusercontent.com/zephyrproject-rtos/zephyr/master/scripts/requirements.txt && \
wget -q https://raw.githubusercontent.com/zephyrproject-rtos/zephyr/master/scripts/requirements-base.txt && \
wget -q https://raw.githubusercontent.com/zephyrproject-rtos/zephyr/master/scripts/requirements-build-test.txt && \
wget -q https://raw.githubusercontent.com/zephyrproject-rtos/zephyr/master/scripts/requirements-doc.txt && \
wget -q https://raw.githubusercontent.com/zephyrproject-rtos/zephyr/master/scripts/requirements-run-test.txt && \
wget -q https://raw.githubusercontent.com/zephyrproject-rtos/zephyr/master/scripts/requirements-extras.txt && \
pip3 install wheel &&\
pip3 install -r requirements.txt && \
pip3 install west &&\
Expand Down

0 comments on commit 7588f5c

Please sign in to comment.