|
2 years ago | |
---|---|---|
.gitignore | 2 years ago | |
.gitlab-ci.yml | 2 years ago | |
README.md | 2 years ago | |
build | 2 years ago | |
install-and-chroot.sh | 2 years ago | |
pkgxx.conf.example | 2 years ago |
In order to have an entire YunoRock development environment, I created a script that install an Alpine chroot, configure and enter it.
Launch it, and start testing!
chmod +x ./install-and-chroot.sh
./install-and-chroot.sh
By default it writes files into /alpine
. So enter into chroot:
/alpine/enter-chroot
But you can change destination directory if needed:
chmod +x ./install-and-chroot.sh
DIRPATH="/my_alpine_chroot" ./install-and-chroot.sh
and then:
/my_alpine_chroot/enter-chroot
Pay attention: DIRPATH should be an absolute path.