-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use new dl-pipe utility to get resumable piped downloads
- Loading branch information
Showing
2 changed files
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ FROM golang:1.22.5-bookworm AS base-build | |
|
||
RUN go install cosmossdk.io/tools/cosmovisor/cmd/[email protected] | ||
RUN go install github.com/hashicorp/go-getter/cmd/[email protected] | ||
RUN go install github.com/zeta-chain/dl-pipe/cmd/dl-pipe@latest | ||
|
||
FROM debian:bookworm AS base | ||
|
||
|
@@ -14,7 +15,7 @@ RUN apt update && \ | |
apt install -y ca-certificates curl jq && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
COPY --from=base-build /go/bin/cosmovisor /go/bin/go-getter /usr/local/bin | ||
COPY --from=base-build /go/bin/cosmovisor /go/bin/go-getter /go/bin/dl-pipe /usr/local/bin | ||
|
||
COPY run.sh init.sh / | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters