Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
charlielye committed May 2, 2024
1 parent 48d47d8 commit 6d39746
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion build-images/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,9 @@ RUN ulimit -n 65535 && \
mv ./target/local/$t /opt/foundry/bin/$t; \
strip /opt/foundry/bin/$t; \
done
FROM scratch AS foundry
FROM ubuntu:noble AS foundry
COPY --from=foundry-build /opt/foundry /opt/foundry
ENV PATH="/opt/foundry/bin:$PATH"

########################################################################################################################
# This image contains *just* what's needed to perform a full build of the aztec project.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
fork:
image: aztecprotocol/foundry:de33b6af53005037b463318d2628b5cfcaf3991
image: aztecprotocol/foundry:de33b6af53005037b463318d2628b5cfcaf39916
entrypoint: >
sh -c '
if [ -n "$FORK_BLOCK_NUMBER" ] && [ -n "$FORK_URL" ]; then
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/end-to-end/scripts/docker-compose-p2p.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
fork:
image: aztecprotocol/foundry:de33b6af53005037b463318d2628b5cfcaf3991
image: aztecprotocol/foundry:de33b6af53005037b463318d2628b5cfcaf39916
entrypoint: 'anvil --silent -p 8545 --host 0.0.0.0 --chain-id 31337'
expose:
- '8545'
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/end-to-end/scripts/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
fork:
image: aztecprotocol/foundry:de33b6af53005037b463318d2628b5cfcaf3991
image: aztecprotocol/foundry:de33b6af53005037b463318d2628b5cfcaf39916
entrypoint: >
sh -c '
if [ -n "$FORK_BLOCK_NUMBER" ] && [ -n "$FORK_URL" ]; then
Expand Down

0 comments on commit 6d39746

Please sign in to comment.