Skip to content

Commit 78f529c

Browse files
committed
Upgrade to pg 15
1 parent 53db93e commit 78f529c

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM postgres:12-alpine
1+
FROM postgres:15-alpine
22
LABEL maintainer="uw-phewitt"
33

44
ADD install.sh install.sh

install.sh

+4-3
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@ set -e
77
apk update
88

99
# install s3 tools
10-
apk add python3 py3-pip
11-
pip3 install awscli
10+
apk add python3 gzip
11+
apk add --no-cache aws-cli
12+
#pip3 install awscli
1213

1314
# install go-cron
1415
apk add curl
15-
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
1617
chmod u+x /usr/local/bin/go-cron
1718
apk del curl
1819

0 commit comments

Comments
 (0)