Add more architectures, moved to docker baker build system

This commit is contained in:
Pau Rodriguez-Estivill
2020-02-11 18:45:46 +01:00
parent bac1647953
commit f7301fd81e
7 changed files with 180 additions and 19 deletions
+6 -2
View File
@@ -1,8 +1,12 @@
FROM postgres
ARG BASETAG=latest
FROM postgres:$BASETAG
ARG GOCRONVER=v0.0.8
ARG TARGETOS
ARG TARGETARCH
RUN set -x \
&& apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && rm -rf /var/lib/apt/lists/* \
&& curl -L https://github.com/prodrigestivill/go-cron/releases/download/v0.0.8/go-cron-linux-amd64.gz | zcat > /usr/local/bin/go-cron \
&& curl -L https://github.com/prodrigestivill/go-cron/releases/download/$GOCRONVER/go-cron-$TARGETOS-$TARGETARCH.gz | zcat > /usr/local/bin/go-cron \
&& chmod a+x /usr/local/bin/go-cron \
&& apt-get purge -y --auto-remove ca-certificates && apt-get clean