Skip to content
Snippets Groups Projects
install.sh 406 B
Newer Older
Elliott Shugerman's avatar
Elliott Shugerman committed
#! /bin/sh

set -e
set -o pipefail
Elliott Shugerman's avatar
Elliott Shugerman committed

apk update

# install pg_dump
apk add postgresql-client
Elliott Shugerman's avatar
Elliott Shugerman committed

# install gpg
apk add gnupg

Elliott Shugerman's avatar
Elliott Shugerman committed
# install s3 tools
Elliott Shugerman's avatar
Elliott Shugerman committed
apk add python3
pip3 install awscli
Elliott Shugerman's avatar
Elliott Shugerman committed

# install go-cron
apk add curl
curl -L https://github.com/odise/go-cron/releases/download/v0.0.6/go-cron-linux.gz | zcat > /usr/local/bin/go-cron
Elliott Shugerman's avatar
Elliott Shugerman committed
chmod u+x /usr/local/bin/go-cron
apk del curl


# cleanup
rm -rf /var/cache/apk/*