56 lines
976 B
Plaintext
Executable File
56 lines
976 B
Plaintext
Executable File
#!/bin/ash
|
|
|
|
set -e
|
|
|
|
function compile {
|
|
# Make sure that the tooling is present
|
|
if [[ ! -d /mix-archives/hex-* ]] || [[ ! -f /mix/rebar ]] || [[ ! -f /mix/rebar3 ]]; then
|
|
mix local.hex --force
|
|
mix local.rebar --force
|
|
fi
|
|
|
|
# Recompile
|
|
mix deps.get
|
|
mix compile
|
|
}
|
|
|
|
# Execute onbuild actions if required
|
|
if [[ "$1" == "onbuild" ]]; then
|
|
# Pretend we're in runtime mode
|
|
mv /pleroma /pleroma-runtime
|
|
cd /pleroma-runtime
|
|
|
|
# Build pleroma
|
|
compile
|
|
|
|
# Put precompiled sources back
|
|
cd /
|
|
mv /pleroma-runtime /pleroma
|
|
exit 0
|
|
fi
|
|
|
|
# Ensure that the environment is clean
|
|
if [[ -d /pleroma-runtime ]]; then
|
|
rm -rf /pleroma-runtime
|
|
fi
|
|
mkdir /pleroma-runtime
|
|
|
|
# Copy sources
|
|
rsync -azI /pleroma/ /pleroma-runtime/
|
|
|
|
# Copy overrides
|
|
rsync -azI /custom.d/ /pleroma-runtime/
|
|
|
|
# Go to runtime workspace
|
|
cd /pleroma-runtime
|
|
|
|
# Build
|
|
compile
|
|
|
|
# Prepare DB
|
|
mix ecto.create
|
|
mix ecto.migrate
|
|
|
|
# Liftoff o/
|
|
exec mix phx.server
|