Skip to content

Commit

Permalink
build: improved curl args (--no-progress-meter)
Browse files Browse the repository at this point in the history
  • Loading branch information
joonas-fi committed Aug 18, 2024
1 parent 937f3fe commit 71c8b9a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand All @@ -14,3 +14,5 @@ WORKDIR /workspace
CMD true

ADD publish-gh.sh /bin/publish-gh.sh

ADD publish-docker.sh /bin/publish-docker.sh

0 comments on commit 71c8b9a

Please sign in to comment.