Browse Source

Update alpine from 3.9 to 3.13

pull/132/head
Georg Ledermann 3 years ago
parent
commit
efaaf23e4e
No known key found for this signature in database GPG Key ID: B6D83FBDDCEFBF3
  1. 2
      postgres-backup-s3/Dockerfile
  2. 9
      postgres-backup-s3/install.sh

2
postgres-backup-s3/Dockerfile

@ -1,4 +1,4 @@
FROM alpine:3.9
FROM alpine:3.13
LABEL maintainer="Johannes Schickling <schickling.j@gmail.com>"
ADD install.sh install.sh

9
postgres-backup-s3/install.sh

@ -7,16 +7,15 @@ set -e
apk update
# install pg_dump
apk add postgresql
apk add postgresql-client
# install s3 tools
apk add python py2-pip
pip install awscli
apk del py2-pip
apk add python3 py3-pip
pip3 install awscli
# 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
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

Loading…
Cancel
Save