-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Resolve issue #69 Signed-off-by: Ashutosh Tripathi <[email protected]> * Update Dockerfile Signed-off-by: Ashutosh Tripathi <[email protected]> * Update README.md Signed-off-by: Ashutosh Tripathi <[email protected]> --------- Signed-off-by: Ashutosh Tripathi <[email protected]>
- Loading branch information
1 parent
a857165
commit 33e8c99
Showing
2 changed files
with
12 additions
and
11 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,9 +1,15 @@ | ||
ARG AVALANCHEGO_VERSION | ||
FROM avaplatform/avalanche-cli:latest as avalanche-cli | ||
FROM ghcr.io/foundry-rs/foundry:latest as foundry | ||
FROM avaplatform/avalanchego:$AVALANCHEGO_VERSION as avalanchego | ||
FROM mcr.microsoft.com/devcontainers/base | ||
|
||
COPY --from=avalanchego /avalanchego/build /go/src/github.com/ava-labs/avalanchego/build | ||
COPY --from=avalanche-cli /avalanche /usr/local/bin/avalanche | ||
|
||
COPY --from=foundry /usr/local/bin/forge /usr/local/bin/forge | ||
COPY --from=foundry /usr/local/bin/cast /usr/local/bin/cast | ||
COPY --from=foundry /usr/local/bin/anvil /usr/local/bin/anvil | ||
COPY --from=foundry /usr/local/bin/chisel /usr/local/bin/chisel | ||
|
||
RUN curl -sSfL https://raw.githubusercontent.com/ava-labs/avalanche-network-runner/main/scripts/install.sh | sh -s |
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