We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53db93e commit 78f529cCopy full SHA for 78f529c
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM postgres:12-alpine
+FROM postgres:15-alpine
2
LABEL maintainer="uw-phewitt"
3
4
ADD install.sh install.sh
install.sh
@@ -7,12 +7,13 @@ set -e
7
apk update
8
9
# install s3 tools
10
-apk add python3 py3-pip
11
-pip3 install awscli
+apk add python3 gzip
+apk add --no-cache aws-cli
12
+#pip3 install awscli
13
14
# install go-cron
15
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
16
+curl -L --insecure https://github.com/odise/go-cron/releases/download/v0.0.7/go-cron-linux.gz | zcat > /usr/local/bin/go-cron
17
chmod u+x /usr/local/bin/go-cron
18
apk del curl
19
0 commit comments