Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update eigenlayer cli version #1736

Draft
wants to merge 3 commits into
base: testnet
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docker/aligned_base.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ ENV PATH="/usr/local/go/bin:${PATH}"
# Install go deps
RUN go install github.com/maoueh/[email protected]
RUN go install github.com/ethereum/go-ethereum/cmd/abigen@latest
RUN go install github.com/Layr-Labs/eigenlayer-cli/cmd/eigenlayer@latest

# Install eigenlayer cli using downloading the binary
RUN curl -sSfL https://raw.githubusercontent.com/layr-labs/eigenlayer-cli/master/scripts/install.sh | sh -s -- v0.11.0

# Install rust
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
Expand Down
3 changes: 2 additions & 1 deletion docker/eigenlayer-cli.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ FROM golang:1.22.2-bookworm

COPY config-files/ ./config-files

RUN go install github.com/Layr-Labs/eigenlayer-cli/cmd/eigenlayer@latest
# Install eigenlayer cli using downloading the binary
RUN curl -sSfL https://raw.githubusercontent.com/layr-labs/eigenlayer-cli/master/scripts/install.sh | sh -s -- v0.11.0
Loading