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: bump foundry to v0.3.0 #13

Merged
merged 1 commit into from
Jan 24, 2025
Merged
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
3 changes: 2 additions & 1 deletion runbundler/deployer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
FROM node:18 as aa06
RUN git clone http://github.com/eth-infinitism/account-abstraction.git -b v0.6.0

WORKDIR account-abstraction
ENV TS_NODE_TRANSPILE_ONLY=1
ENV PATH=$PATH:./node_modules/.bin
RUN yarn global add node-gyp
RUN yarn && hardhat compile

FROM ghcr.io/foundry-rs/foundry@sha256:09143a1c5ad22ae6b5fbb3d9ac39a5e0cff6be425836e4f1715dc0e204f9899f
FROM ghcr.io/foundry-rs/foundry:v0.3.0

RUN apk add jq
# RUN apk add nodejs yarn jq perl
Expand Down
3 changes: 2 additions & 1 deletion runbundler/funder/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM ghcr.io/foundry-rs/foundry@sha256:09143a1c5ad22ae6b5fbb3d9ac39a5e0cff6be425836e4f1715dc0e204f9899f
FROM ghcr.io/foundry-rs/foundry:v0.3.0


RUN apk add jq
ADD funder.sh /
Expand Down
12 changes: 5 additions & 7 deletions runbundler/run2bundlers.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# docker-compose to bring up a single bundler, with all needed services
version: '3'
version: "3"

services:

funder:
build: ./runbundler/funder
environment:
Expand Down Expand Up @@ -30,9 +29,9 @@ services:
eth-node:
extends:
file: $ETH_NODE_YML
service: eth-node
service: eth-node

bundler:
bundler:
extends:
file: $BUNDLER_YML
service: bundler
Expand All @@ -45,7 +44,7 @@ services:
file: $BUNDLER_YML
service: bundler-verify

bundler2:
bundler2:
extends:
file: $BUNDLER2_YML
service: bundler
Expand All @@ -72,7 +71,7 @@ services:
condition: service_completed_successfully

wait-all:
image: ghcr.io/foundry-rs/foundry@sha256:09143a1c5ad22ae6b5fbb3d9ac39a5e0cff6be425836e4f1715dc0e204f9899f
image: FROM ghcr.io/foundry-rs/foundry:v0.3.0
command: echo started
depends_on:
bundler:
Expand Down Expand Up @@ -103,4 +102,3 @@ networks:
# depends_on:
# wait-all:
# condition: service_completed_successfully

10 changes: 4 additions & 6 deletions runbundler/runbundler.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# docker-compose to bring up a single bundler, with all needed services
version: '3'
version: "3"

services:

funder:
build: ./runbundler/funder
environment:
Expand Down Expand Up @@ -30,9 +29,9 @@ services:
eth-node:
extends:
file: $ETH_NODE_YML
service: eth-node
service: eth-node

bundler:
bundler:
extends:
file: $BUNDLER_YML
service: bundler
Expand All @@ -51,7 +50,7 @@ services:
condition: service_completed_successfully

wait-all:
image: ghcr.io/foundry-rs/foundry@sha256:09143a1c5ad22ae6b5fbb3d9ac39a5e0cff6be425836e4f1715dc0e204f9899f
image: FROM ghcr.io/foundry-rs/foundry:v0.3.0
command: echo started
depends_on:
bundler:
Expand All @@ -71,4 +70,3 @@ services:
# depends_on:
# wait-all:
# condition: service_completed_successfully

Loading