Skip to content

Commit 565da71

Browse files
committed
test: add anvil harness for integration tests
1 parent 6b7198d commit 565da71

File tree

8 files changed

+1163
-1
lines changed

8 files changed

+1163
-1
lines changed

nitro-contracts/Dockerfile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM ghcr.io/foundry-rs/foundry:v1.3.1 AS foundry
2+
3+
FROM node:20-bullseye-slim
4+
5+
COPY --from=foundry /usr/local/bin/forge /usr/local/bin/forge
6+
7+
WORKDIR /workspace
8+
COPY . /workspace
9+
RUN cp scripts/config.example.ts scripts/config.ts
10+
RUN yarn install
11+
RUN yarn build:all
12+
13+
ENTRYPOINT ["yarn"]

0 commit comments

Comments
 (0)