ucloud-setup/init.sh

19 lines
421 B
Bash
Raw Normal View History

2019-08-28 07:13:05 +00:00
# Enable Alpine Edge Repos
cat > /etc/apk/repositories << END \
http://dl-cdn.alpinelinux.org/alpine/edge/main
http://dl-cdn.alpinelinux.org/alpine/edge/community
http://dl-cdn.alpinelinux.org/alpine/edge/testing
END
2019-08-27 08:48:07 +00:00
2019-08-28 07:13:05 +00:00
# Update Package List and Upgrade System
2019-08-27 08:44:13 +00:00
apk update
apk upgrade
2019-08-28 07:13:05 +00:00
# Install system packages
2019-08-27 09:12:22 +00:00
apk add python3 gcc g++ python3-dev
2019-08-28 07:13:05 +00:00
2019-08-27 08:43:30 +00:00
pip3 install --upgrade pip
pip3 install pipenv
2019-08-27 08:49:40 +00:00
pipenv install
pipenv shell