We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e486dc commit 48ab087Copy full SHA for 48ab087
src/base/.devcontainer/scripts/root_install.sh
@@ -2,25 +2,14 @@
2
set -e
3
export DEBIAN_FRONTEND=noninteractive
4
5
-# Install essential packages first
6
-apt-get update
7
-apt-get install -y \
8
- curl \
9
- wget \
10
- git \
11
- sudo \
12
- unzip
13
-apt-get clean
14
-rm -rf /var/lib/apt/lists/*
15
-
16
# Add amd64 architecture if on arm64
17
if [ "$TARGETARCH" == "arm64" ] || [ "$TARGETARCH" == "aarch64" ]; then
18
echo "Adding amd64 architecture support"
19
dpkg --add-architecture amd64
20
- echo "Running apt-get update for multi-arch"
21
- apt-get update
22
fi
23
+echo "Running apt-get update"
+apt-get update
24
# uninstall unnecessary packages
25
echo "Removing unnecessary packages"
26
apt-get remove -y \
0 commit comments