We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5445563 commit ef1a4ceCopy full SHA for ef1a4ce
src/install.sh
@@ -6,21 +6,14 @@ set -o pipefail
6
apk update
7
8
# install gpg
9
-apk add gnupg
+apk add gnupg aws-cli python3 py3-pip curl
10
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
17
curl -L https://github.com/ivoronin/go-cron/releases/download/v0.0.5/go-cron_0.0.5_linux_${TARGETARCH}.tar.gz -O
18
tar xvf go-cron_0.0.5_linux_${TARGETARCH}.tar.gz
19
rm go-cron_0.0.5_linux_${TARGETARCH}.tar.gz
20
mv go-cron /usr/local/bin/go-cron
21
chmod u+x /usr/local/bin/go-cron
22
apk del curl
23
24
25
# cleanup
26
rm -rf /var/cache/apk/*
0 commit comments