From 71c8b9afe27a5b8250fcb6a05c39234887355aaa Mon Sep 17 00:00:00 2001 From: Joonas Loppi Date: Sun, 18 Aug 2024 12:17:46 +0300 Subject: [PATCH] build: improved curl args (`--no-progress-meter`) --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f7309d5..d0c3da0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM alpine:latest # bash required by our publish.sh script RUN apk add curl bash \ - && curl --fail --location --output /bin/deployer https://function61.com/app-dl/api/github.com/function61/deployer/latest_releases_asset/deployer_linux-amd64 \ + && curl --fail --location --no-progress-meter --output /bin/deployer https://function61.com/app-dl/api/github.com/function61/deployer/latest_releases_asset/deployer_linux-amd64 \ && chmod +x /bin/deployer # https://developer.github.com/actions/creating-github-actions/accessing-the-runtime-environment/ @@ -14,3 +14,5 @@ WORKDIR /workspace CMD true ADD publish-gh.sh /bin/publish-gh.sh + +ADD publish-docker.sh /bin/publish-docker.sh