9 lines
191 B
Bash
9 lines
191 B
Bash
#!/bin/ash
|
|
|
|
# apk update and install essentials
|
|
apk update && apk upgrade
|
|
apk add nano
|
|
nano /etc/apk/repositories
|
|
|
|
apk add curl wget qemu-guest-agent git bash-doc bash-completion --no-cache
|