From 83ae010322a7ed9664baeb94daa6a9785d1ae6a0 Mon Sep 17 00:00:00 2001 From: Mikkel Rostved Date: Sun, 25 Dec 2016 08:11:23 +0100 Subject: [PATCH] Bumped alpine version to edge to get pg_dump version 9.6.1 --- postgres-backup-s3/Dockerfile | 2 +- postgres-backup-s3/install.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/postgres-backup-s3/Dockerfile b/postgres-backup-s3/Dockerfile index 8c1e591..dee471d 100644 --- a/postgres-backup-s3/Dockerfile +++ b/postgres-backup-s3/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.4 +FROM alpine:edge MAINTAINER Johannes Schickling "schickling.j@gmail.com" ADD install.sh install.sh diff --git a/postgres-backup-s3/install.sh b/postgres-backup-s3/install.sh index 9c27afc..16c7119 100644 --- a/postgres-backup-s3/install.sh +++ b/postgres-backup-s3/install.sh @@ -10,9 +10,9 @@ apk update apk add postgresql # install s3 tools -apk add python py-pip +apk add python py2-pip pip install awscli -apk del py-pip +apk del py2-pip # install go-cron apk add curl