Use forked foundry
This commit is contained in:
parent
71cb9cd459
commit
01dbde3239
4
container-build/cerc-foundry/build.sh
Executable file
4
container-build/cerc-foundry/build.sh
Executable file
@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# Build a local version of the foundry-rs/foundry image
|
||||||
|
source ${CERC_CONTAINER_BASE_DIR}/build-base.sh
|
||||||
|
docker build -t cerc/foundry:local -f ${CERC_REPO_BASE_DIR}/foundry/Dockerfile-debian ${build_command_args} ${CERC_REPO_BASE_DIR}/foundry
|
@ -1,16 +1,17 @@
|
|||||||
# TODO: Make work for arm64/Apple Silicon
|
# TODO: Make work for arm64/Apple Silicon
|
||||||
FROM ghcr.io/foundry-rs/foundry:nightly-267e14fab654d9ce955dce64c0eb09f01c8538ee
|
# FROM ghcr.io/foundry-rs/foundry:nightly-267e14fab654d9ce955dce64c0eb09f01c8538ee
|
||||||
|
FROM cerc/foundry:local
|
||||||
|
|
||||||
RUN apk update
|
# Install node (local foundry is a debian based image)
|
||||||
|
RUN apt-get update \
|
||||||
# Install node (use edge repo to get latest version)
|
&& apt-get install -y curl wget \
|
||||||
RUN apk add --update --no-cache curl wget bash git busybox jq openssl \
|
&& curl --silent --location https://deb.nodesource.com/setup_18.x | bash - \
|
||||||
&& apk add nodejs --update-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/main --allow-untrusted \
|
&& apt-get update \
|
||||||
&& apk add npm \
|
&& apt-get install -y nodejs git busybox jq \
|
||||||
&& node -v
|
&& node -v
|
||||||
|
|
||||||
# Add corepack for yarn and pnpm
|
# Add corepack for yarn and pnpm
|
||||||
RUN npm install -g corepack && corepack enable \
|
RUN corepack enable \
|
||||||
&& yarn --version
|
&& yarn --version
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
@ -3,10 +3,12 @@ name: fixturenet-optimism
|
|||||||
description: "Optimism Fixturenet"
|
description: "Optimism Fixturenet"
|
||||||
repos:
|
repos:
|
||||||
# L2 (optimism)
|
# L2 (optimism)
|
||||||
|
- github.com/cerc-io/foundry@pm-merge-upstream-changes
|
||||||
- github.com/ethereum-optimism/optimism@v1.7.4
|
- github.com/ethereum-optimism/optimism@v1.7.4
|
||||||
- github.com/ethereum-optimism/op-geth@v1.101311.0
|
- github.com/ethereum-optimism/op-geth@v1.101311.0
|
||||||
containers:
|
containers:
|
||||||
# L2 (optimism)
|
# L2 (optimism)
|
||||||
|
- cerc/foundry
|
||||||
- cerc/optimism-contracts
|
- cerc/optimism-contracts
|
||||||
- cerc/optimism-op-node
|
- cerc/optimism-op-node
|
||||||
- cerc/optimism-l2geth
|
- cerc/optimism-l2geth
|
||||||
|
Loading…
Reference in New Issue
Block a user