File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ ENV DEBIAN_FRONTEND=noninteractive
77ARG ZEPHYR_VERSION
88ENV ZEPHYR_VERSION=${ZEPHYR_VERSION}
99RUN \
10- apt-get -y update \
11- && apt-get -y install --no-install-recommends \
10+ apt-get update -y \
11+ && apt-get install -y --no-install-recommends \
1212 ccache \
1313 cmake \
1414 file \
@@ -41,12 +41,12 @@ ENV LC_ALL=C
4141ENV PAGER=less
4242
4343RUN \
44- apt-get -y update \
45- && apt-get -y install --no-install-recommends \
44+ apt-get update -y \
45+ && apt-get install -y --no-install-recommends \
4646 curl \
4747 && curl -sL https://deb.nodesource.com/setup_14.x | bash - \
48- && apt-get -y update \
49- && apt-get -y install --no-install-recommends \
48+ && apt-get update -y \
49+ && apt-get install -y --no-install-recommends \
5050 clang-format \
5151 g++-multilib \
5252 gdb \
@@ -88,8 +88,8 @@ ARG ZEPHYR_SDK_VERSION
8888ARG ZEPHYR_SDK_SETUP_FILENAME=zephyr-toolchain-${ARCHITECTURE}-${ZEPHYR_SDK_VERSION}-x86_64-linux-setup.run
8989ARG ZEPHYR_SDK_INSTALL_DIR=/opt/zephyr-sdk-${ZEPHYR_SDK_VERSION}
9090RUN \
91- apt-get -y update \
92- && apt-get -y install --no-install-recommends \
91+ apt-get update -y \
92+ && apt-get install -y --no-install-recommends \
9393 bzip2 \
9494 wget \
9595 xz-utils \
You can’t perform that action at this time.
0 commit comments