-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
6 additions
and
6 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# syntax=ghcr.io/zeta-chain/docker-dockerfile:1.9-labs | ||
# check=error=true | ||
FROM ghcr.io/zeta-chain/golang:1.22.5-bookworm AS base-build | ||
FROM ghcr.io/zeta-chain/golang:1.22.7-bookworm AS base-build | ||
|
||
ENV GOPATH=/go | ||
ENV GOOS=linux | ||
|
@@ -27,10 +27,10 @@ RUN --mount=type=cache,target="/root/.cache/go-build" \ | |
NODE_COMMIT=${NODE_COMMIT} \ | ||
make install install-zetae2e | ||
|
||
FROM ghcr.io/zeta-chain/golang:1.22.5-bookworm AS cosmovisor-build | ||
FROM ghcr.io/zeta-chain/golang:1.22.7-bookworm AS cosmovisor-build | ||
RUN go install cosmossdk.io/tools/cosmovisor/cmd/[email protected] | ||
|
||
FROM ghcr.io/zeta-chain/golang:1.22.5-bookworm AS base-runtime | ||
FROM ghcr.io/zeta-chain/golang:1.22.7-bookworm AS base-runtime | ||
|
||
RUN apt update && \ | ||
apt install -yq jq yq curl tmux python3 openssh-server iputils-ping iproute2 bind9-host && \ | ||
|
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
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
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/usr/bin/env bash | ||
|
||
docker run -it --rm -w /node -v "$(pwd):/node" ghcr.io/zeta-chain/gosec:2.21.0-zeta -exclude-generated -exclude-dir testutil ./... | ||
docker run -it --rm -w /node -v "$(pwd):/node" ghcr.io/zeta-chain/gosec:2.21.0-zeta2 -exclude-generated -exclude-dir testutil ./... |