From d2842085e0790a014da7133afa0b9c1499e27e30 Mon Sep 17 00:00:00 2001
From: Georg Ledermann <georg@ledermann.dev>
Date: Fri, 26 Nov 2021 05:31:43 +0100
Subject: [PATCH] Fix missing python packages

---
 postgres-backup-s3/install.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/postgres-backup-s3/install.sh b/postgres-backup-s3/install.sh
index bca5a1b..4c8fef1 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 py2-pip
+apk add python3 py3-pip
 pip install awscli
-apk del py2-pip
+apk del py3-pip
 
 # install go-cron
 apk add curl