Initial commit.

This commit is contained in:
Pau Rodriguez-Estivill
2016-10-28 14:58:34 +02:00
commit 96c02aafe0
5 changed files with 151 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#! /bin/sh
# exit if a command fails
set -e
apk update
# install pg_dump
apk add postgresql
# 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
chmod u+x /usr/local/bin/go-cron
apk del curl
# cleanup
rm -rf /var/cache/apk/*