You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
659 B
27 lines
659 B
#!/bin/bash |
|
|
|
## Update Alpine to latest things and make good to work with docker. |
|
apk update;apk upgrade --update-cache --available |
|
apk add --no-cache bash |
|
|
|
apk add docker-engine docker-compose docker-cli docker fuse-overlayfs |
|
# These are likely needed for many things run by pip |
|
apk add py-pip libffi-dev openssl-dev gcc libc-dev make |
|
|
|
## Core AoS things we want on this kind of lxc |
|
apk add sed attr dialog bash bash-completion grep |
|
apk add util-linux binutils findutils readline |
|
apk add lsof less nano curl glances |
|
|
|
|
|
apk add openssh |
|
rc-update add sshd |
|
rc-service sshd start |
|
rc-service sshd status |
|
|
|
apk add nodejs npm |
|
apk add xsel |
|
apk add yarn |
|
apk add git |
|
|
|
|
|
|