balena-supervisor/postinstall.sh

36 lines
1.5 KiB
Bash
Raw Normal View History

set -o errexit
set -o pipefail
2015-01-02 17:34:42 +00:00
# Copy supervisord launch file for resin-supervisor
cp /app/resin-supervisor.conf /etc/supervisor/conf.d/resin-supervisor.conf
2014-08-01 15:20:58 +00:00
if [ $NODE_ENV == 'production' ]; then
chmod +x src/enterContainer.sh
2014-08-01 15:20:58 +00:00
node ./node_modules/coffee-script/bin/coffee -c ./src
# We don't need coffee-script at runtime
2014-08-01 15:20:58 +00:00
npm uninstall coffee-script
# Empty the apt and npm caches of the packages we installed
npm cache clean
apt-get clean
# Remove deploy key
rm -rf /root/.ssh/* deploy_key
# Remove unnecessary source files
rm -rf Makefile src/*.coffee
# Remove the git repo info
rm -rf .git
# Remove the c files we no longer need (the sqlite3 node module has a massive ~5M c file)
find . -name '*.c' -delete
# And the tar files (sqlite3 module again)
find . -name '*.tar.*' -delete
# Who needs tests and docs? Pffft! - Ignoring errors because find isn't a fan of us deleting directories whilst it's trying to search within them.
find . -type d -name 'test' -exec rm -rf '{}' \; 2> /dev/null || true
find . -type d -name 'doc' -exec rm -rf '{}' \; 2> /dev/null || true
find . -type d -name 'man' -exec rm -rf '{}' \; 2> /dev/null || true
# And any benchmark results (ttyjs->socket.io->socket.io-client->active-x-obfuscator->zeparser has an 8MB benchmark.html)
find . -type d -name 'benchmark*' -exec rm -rf '{}' \; 2> /dev/null || true
find . -name 'benchmark*' -delete
# And npm - we've finished with it
find . -type d -name 'npm' -exec rm -rf '{}' \; 2> /dev/null || true
2014-08-01 15:20:58 +00:00
fi