You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
416 B
25 lines
416 B
#! /bin/sh
|
|
|
|
# exit if a command fails
|
|
set -e
|
|
|
|
|
|
apk update
|
|
|
|
# install mysqldump
|
|
apk add mysql-client
|
|
|
|
# install s3 tools
|
|
apk add python py-pip
|
|
pip install awscli
|
|
apk del py-pip
|
|
|
|
# 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/*
|