File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
src/base/.devcontainer/scripts Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22set -e
3+ export DEBIAN_FRONTEND=noninteractive
34
45# Install essential packages first
56apt-get update
@@ -16,14 +17,16 @@ rm -rf /var/lib/apt/lists/*
1617if [ " $TARGETARCH " == " arm64" ] || [ " $TARGETARCH " == " aarch64" ]; then
1718 echo " Adding amd64 architecture support"
1819 dpkg --add-architecture amd64
20+ echo " Running apt-get update for multi-arch"
21+ apt-get update
1922fi
2023
2124# uninstall unnecessary packages
25+ echo " Removing unnecessary packages"
2226apt-get remove -y \
2327 python3
2428# install necessary libraries for asdf and language runtimes
25- apt-get update
26- export DEBIAN_FRONTEND=noninteractive
29+ echo " Installing necessary packages"
2730apt-get -y install --no-install-recommends htop vim curl git build-essential \
2831 libffi-dev libssl-dev libxml2-dev libxslt1-dev libjpeg8-dev libbz2-dev \
2932 zlib1g-dev unixodbc unixodbc-dev libsecret-1-0 libsecret-1-dev libsqlite3-dev \
You can’t perform that action at this time.
0 commit comments