Skip to content

Commit 26db4c2

Browse files
authored
chore: fix linter issue and make it a required PR check (#120)
1 parent 5a3c9f7 commit 26db4c2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.devcontainer/Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,8 @@ RUN \
1111
mkdir -p /opt/segger/jlink \
1212
&& 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
1313

14-
RUN apt-get update && apt-get install -y --no-install-recommends libusb-1.0-0=2:1.0.27-1
14+
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

Comments
 (0)