Skip to content

Commit 4b049c4

Browse files
authored
Add iputils-ping to install dependencies script (#917)
The new dev_deploy.sh uses ping to check if we can see the JetKVM, but mcr.microsoft.com/devcontainers/go:1.25-trixie does not have ping installed.
1 parent 7955ee9 commit 4b049c4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.devcontainer/install-deps.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ set -ex
1414
export DEBIAN_FRONTEND=noninteractive
1515
sudo apt-get update && \
1616
sudo apt-get install -y --no-install-recommends \
17+
iputils-ping \
1718
build-essential \
1819
device-tree-compiler \
1920
gperf g++-multilib gcc-multilib \
@@ -33,4 +34,4 @@ wget https://github.com/jetkvm/rv1106-system/releases/download/${BUILDKIT_VERSIO
3334
sudo tar --use-compress-program="unzstd --long=31" -xvf buildkit.tar.zst -C /opt/jetkvm-native-buildkit && \
3435
rm buildkit.tar.zst
3536
popd
36-
rm -rf "${BUILDKIT_TMPDIR}"
37+
rm -rf "${BUILDKIT_TMPDIR}"

0 commit comments

Comments
 (0)