mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
* updating container builder * tweaking dependency script * closes #2749 - updates the book for install
20 lines
422 B
Bash
Executable file
20 lines
422 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ -z "${TZ}" ]; then
|
|
export TZ="UTC"
|
|
fi
|
|
|
|
ln -snf "/usr/share/zoneinfo/$TZ" "/etc/localtime" && echo "$TZ" > /etc/timezone
|
|
|
|
# Install dependencies, for example make!
|
|
scripts/install_ubuntu_dependencies.sh
|
|
|
|
# Make git happy
|
|
git config --global --add safe.directory /root/kanidm
|
|
|
|
echo "To launch a deb build, try:"
|
|
echo "make -f ./platform/debian/Makefile debs/kanidm"
|
|
|
|
# Launch shell
|
|
exec /bin/bash "$@"
|