Fix curl issues #119

This commit is contained in:
Pau Rodriguez-Estivill
2022-08-31 21:24:30 +02:00
parent 10d66d8aa0
commit 56c4284f6f
+2 -3
View File
@@ -19,10 +19,9 @@ RUN set -x \
# #
RUN set -x \ RUN set -x \
&& apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && rm -rf /var/lib/apt/lists/* \ && apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && rm -rf /var/lib/apt/lists/* \
&& curl -o /usr/local/bin/go-cron.gz -L https://github.com/prodrigestivill/go-cron/releases/download/$GOCRONVER/go-cron-$TARGETOS-$TARGETARCH.gz \ && curl -o /usr/local/bin/go-cron.gz -L https://github.com/prodrigestivill/go-cron/releases/download/$GOCRONVER/go-cron-$TARGETOS-$TARGETARCH.gz \
&& gzip -vnd /usr/local/bin/go-cron.gz && chmod a+x /usr/local/bin/go-cron \ && gzip -vnd /usr/local/bin/go-cron.gz && chmod a+x /usr/local/bin/go-cron
&& apt-get purge -y --auto-remove ca-certificates && apt-get clean
ENV POSTGRES_DB="**None**" \ ENV POSTGRES_DB="**None**" \
POSTGRES_DB_FILE="**None**" \ POSTGRES_DB_FILE="**None**" \