Update npm_setup.sh

This commit is contained in:
tteckster 2022-02-01 19:04:25 -05:00 committed by GitHub
parent 8f509d31b1
commit ae2b1ca424
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 16 deletions

View File

@ -31,22 +31,23 @@ echo -e "${CHECKMARK} \e[1;92m Updating Container OS... \e[0m"
apt update &>/dev/null apt update &>/dev/null
apt-get -qqy upgrade &>/dev/null apt-get -qqy upgrade &>/dev/null
echo -e "${CHECKMARK} \e[1;92m Installing Dependencies... \e[0m" echo -e "${CHECKMARK} \e[1;92m Installing Dependencies... \e[0m"
echo "fs.file-max = 65535" > /etc/sysctl.conf echo "fs.file-max = 65535" > /etc/sysctl.conf
apt-get update &>/dev/null apt-get update &>/dev/null
apt-get -qqy install \ sleep 3
sudo \ apt-get -qqy install \
curl \ sudo \
wget \ curl \
gnupg \ wget \
openssl \ gnupg \
ca-certificates \ openssl \
apache2-utils \ ca-certificates \
logrotate \ apache2-utils \
build-essential \ logrotate \
python3-dev \ build-essential \
git \ python3-dev \
lsb-release &>/dev/null git \
lsb-release &>/dev/null
echo -e "${CHECKMARK} \e[1;92m Installing Python... \e[0m" echo -e "${CHECKMARK} \e[1;92m Installing Python... \e[0m"
apt-get install -y -q --no-install-recommends python3 python3-pip python3-venv &>/dev/null apt-get install -y -q --no-install-recommends python3 python3-pip python3-venv &>/dev/null