2019-11-27 17:05:27 -07:00
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
# exit if a command fails
|
|
|
|
set -e
|
|
|
|
|
|
|
|
apk update
|
|
|
|
|
|
|
|
# install pg_dump
|
2019-11-27 20:57:21 -07:00
|
|
|
apk add postgresql-client
|
2019-11-27 17:05:27 -07:00
|
|
|
|
|
|
|
# install s3 tools
|
2019-11-27 20:57:21 -07:00
|
|
|
apk add python py-pip
|
2019-11-27 17:05:27 -07:00
|
|
|
pip install awscli
|
2019-11-27 20:57:21 -07:00
|
|
|
apk del py-pip
|
2019-11-27 17:05:27 -07:00
|
|
|
|
|
|
|
# install go-cron
|
|
|
|
apk add curl
|
|
|
|
curl -L --insecure https://github.com/odise/go-cron/releases/download/v0.0.6/go-cron-linux.gz | zcat > /usr/local/bin/go-cron
|
|
|
|
chmod u+x /usr/local/bin/go-cron
|
|
|
|
apk del curl
|
|
|
|
|
|
|
|
|
|
|
|
# cleanup
|
|
|
|
rm -rf /var/cache/apk/*
|