We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a3c9f7 commit 26db4c2Copy full SHA for 26db4c2
.devcontainer/Dockerfile
@@ -11,4 +11,8 @@ RUN \
11
mkdir -p /opt/segger/jlink \
12
&& wget --post-data="accept_license_agreement=accepted" -qO - "https://www.segger.com/downloads/jlink/JLink_Linux_${SEGGER_JLINK_VERSION}_$(uname -m | sed 's/aarch64/arm64/').tgz" | tar --strip-components=1 --wildcards -xzC /opt/segger/jlink
13
14
-RUN apt-get update && apt-get install -y --no-install-recommends libusb-1.0-0=2:1.0.27-1
+RUN \
15
+ # Install libusb
16
+ apt-get update && apt-get install -y --no-install-recommends libusb-1.0-0=2:1.0.27-1 \
17
+ && apt-get clean \
18
+ && rm -rf /var/lib/apt/lists/*
0 commit comments