1
0
Fork 0
env/.install/core.sh

21 lines
186 B
Bash
Raw Normal View History

2018-03-30 01:26:58 +08:00
#!/bin/sh
set -e
source ./.versions
echo
echo "Installing system utilities..."
echo
apk add --no-cache \
sudo \
2018-04-01 17:06:16 +08:00
nano \
curl \
wget \
2018-04-01 17:09:37 +08:00
openssh-client \
2018-04-01 17:06:16 +08:00
unzip \
zip \
tar \
xz
2018-03-30 01:26:58 +08:00