40 lines
1.0 KiB
Bash
Executable File
40 lines
1.0 KiB
Bash
Executable File
#!/bin/sh
|
|
set -ev
|
|
|
|
cd $(realpath $(dirname "${0}"))
|
|
|
|
# Install basic build tools
|
|
apk update
|
|
apk add git file htop less openssh-client tar xz
|
|
# Install Alpine SDK
|
|
apk add alpine-sdk
|
|
# Install Sphinx support
|
|
apk add py3-sphinx
|
|
pip3 install recommonmark sphinx-markdown-tables
|
|
|
|
# Copy root profile files and settings
|
|
mkdir -p /root/.config/htop /root/.ssh
|
|
cp root/.profile /root/.profile
|
|
cp root/.config/htop/htoprc /root/.config/htop/htoprc
|
|
|
|
# Prepare abuild toolchain
|
|
adduser root abuild
|
|
cp etc/abuild.conf /etc/abuild.conf
|
|
|
|
# Prepare LXC build toolchain
|
|
cp usr/bin/fix-apk /usr/bin/fix-apk
|
|
cp usr/bin/lxc-build /usr/bin/lxc-build
|
|
cp usr/bin/lxc-pack /usr/bin/lxc-pack
|
|
|
|
# Prepare local APK repository
|
|
cp etc/nginx/conf.d/apkrepo.conf /etc/nginx/conf.d/apkrepo.conf
|
|
echo "172.17.0.1 repo.spotter.cz" >>/etc/hosts
|
|
service nginx reload
|
|
|
|
# Supply abuild key
|
|
# echo '/srv/build/repokey.rsa' | abuild-keygen
|
|
|
|
# Supply LXC build key
|
|
# openssl ecparam -genkey -name secp384r1 -out /srv/build/packages.key
|
|
# openssl ec -in /srv/build/packages.key -pubout -out /srv/build/packages.pub
|