mirror of
https://github.com/prodrigestivill/docker-postgres-backup-local.git
synced 2026-06-06 03:27:59 +00:00
Add more architectures, moved to docker baker build system
This commit is contained in:
+6
-2
@@ -1,8 +1,12 @@
|
||||
FROM postgres:alpine
|
||||
ARG BASETAG=alpine
|
||||
FROM postgres:$BASETAG
|
||||
|
||||
ARG GOCRONVER=v0.0.8
|
||||
ARG TARGETOS
|
||||
ARG TARGETARCH
|
||||
RUN set -x \
|
||||
&& apk update && apk add ca-certificates curl \
|
||||
&& curl -L https://github.com/prodrigestivill/go-cron/releases/download/v0.0.8/go-cron-linux-amd64-static.gz | zcat > /usr/local/bin/go-cron \
|
||||
&& curl -L https://github.com/prodrigestivill/go-cron/releases/download/$GOCRONVER/go-cron-$TARGETOS-$TARGETARCH-static.gz | zcat > /usr/local/bin/go-cron \
|
||||
&& chmod a+x /usr/local/bin/go-cron \
|
||||
&& apk del ca-certificates
|
||||
|
||||
|
||||
Reference in New Issue
Block a user