Skip to content

Commit a5e6f37

Browse files
committed
show progress
1 parent ae7e02a commit a5e6f37

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@ RUN apt-get update
55
RUN apt-get install -y git build-essential wget
66

77
# https://github.com/micropython/micropython/issues/8685
8-
RUN wget --quiet "https://developer.arm.com/-/media/Files/downloads/gnu/11.3.rel1/binrel/arm-gnu-toolchain-11.3.rel1-x86_64-arm-none-eabi.tar.xz?rev=95edb5e17b9d43f28c74ce824f9c6f10&hash=D5ACE3A6F75F603551D7702E00ED7B29" -O /tmp/arm-gnu-toolchain.tar.xz
8+
RUN wget "https://developer.arm.com/-/media/Files/downloads/gnu/11.3.rel1/binrel/arm-gnu-toolchain-11.3.rel1-x86_64-arm-none-eabi.tar.xz?rev=95edb5e17b9d43f28c74ce824f9c6f10&hash=D5ACE3A6F75F603551D7702E00ED7B29" -O /tmp/arm-gnu-toolchain.tar.xz
99
RUN tar -xf /tmp/arm-gnu-toolchain.tar.xz -C /usr/local/
1010
ENV PATH="/usr/local/arm-gnu-toolchain-11.3.rel1-x86_64-arm-none-eabi/bin:${PATH}"
1111

1212
# Install nrfutil
1313
RUN echo "deb http://ftp.dk.debian.org/debian bullseye main" >/etc/apt/sources.list
1414
RUN apt-get update
1515
RUN apt-get install -y python2 python2-dev
16-
RUN wget --quiet "https://bootstrap.pypa.io/pip/2.7/get-pip.py" -O /tmp/get-pip.py
16+
RUN wget "https://bootstrap.pypa.io/pip/2.7/get-pip.py" -O /tmp/get-pip.py
1717
RUN python2 /tmp/get-pip.py
1818
RUN pip install nrfutil
1919
# mergehex is not included in nrfutil
2020
RUN apt-get install -y libusb-1.0-0
21-
RUN wget --quiet "https://nsscprodmedia.blob.core.windows.net/prod/software-and-other-downloads/desktop-software/nrf-command-line-tools/sw/versions-10-x-x/10-23-2/nrf-command-line-tools_10.23.2_amd64.deb" -O /tmp/nrf-command-line-tools.deb
21+
RUN wget "https://nsscprodmedia.blob.core.windows.net/prod/software-and-other-downloads/desktop-software/nrf-command-line-tools/sw/versions-10-x-x/10-23-2/nrf-command-line-tools_10.23.2_amd64.deb" -O /tmp/nrf-command-line-tools.deb
2222
RUN dpkg -i /tmp/nrf-command-line-tools.deb
2323
ENV PATH="/opt/nrf-command-line-tools/bin:${PATH}"
2424

0 commit comments

Comments
 (0)