Skip to content

Commit ef1a4ce

Browse files
Postgres 18 alpine
1 parent 5445563 commit ef1a4ce

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

src/install.sh

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,14 @@ set -o pipefail
66
apk update
77

88
# install gpg
9-
apk add gnupg
9+
apk add gnupg aws-cli python3 py3-pip curl
1010

11-
apk add python3
12-
apk add py3-pip # separate package on edge only
13-
pip3 install awscli
14-
15-
# install go-cron
16-
apk add curl
1711
curl -L https://github.com/ivoronin/go-cron/releases/download/v0.0.5/go-cron_0.0.5_linux_${TARGETARCH}.tar.gz -O
1812
tar xvf go-cron_0.0.5_linux_${TARGETARCH}.tar.gz
1913
rm go-cron_0.0.5_linux_${TARGETARCH}.tar.gz
2014
mv go-cron /usr/local/bin/go-cron
2115
chmod u+x /usr/local/bin/go-cron
2216
apk del curl
2317

24-
2518
# cleanup
2619
rm -rf /var/cache/apk/*

0 commit comments

Comments
 (0)