-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
propagate NODE_VERSION and NODE_COMMIT
- Loading branch information
Showing
1 changed file
with
4 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 |
---|---|---|
|
@@ -22,8 +22,10 @@ COPY --exclude=*.sh --exclude=*.md --exclude=*.yml . . | |
ARG NODE_VERSION | ||
ARG NODE_COMMIT | ||
|
||
RUN --mount=type=cache,target="/root/.cache/go-build" make install | ||
RUN --mount=type=cache,target="/root/.cache/go-build" make install-zetae2e | ||
RUN --mount=type=cache,target="/root/.cache/go-build" \ | ||
NODE_VERSION=${NODE_VERSION} \ | ||
NODE_COMMIT=${NODE_COMMIT} \ | ||
make install install-zetae2e | ||
|
||
FROM ghcr.io/zeta-chain/golang:1.22.5-bookworm AS cosmovisor-build | ||
RUN go install cosmossdk.io/tools/cosmovisor/cmd/[email protected] | ||
|