Skip to content
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
1 change: 1 addition & 0 deletions aztec-up/bin/.aztec-run
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ function run {
${arg_env_vars:-} \
${arg_host_binds:-} \
${arg_user:-} \
--entrypoint "" \
aztecprotocol/aztec:$VERSION "${args[@]}"
}

Expand Down
1 change: 1 addition & 0 deletions release-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ ENV ACVM_WORKING_DIRECTORY=/usr/src/acvm
ENV ACVM_BINARY_PATH=/usr/src/noir/noir-repo/target/release/acvm
RUN mkdir -p $BB_WORKING_DIRECTORY $ACVM_WORKING_DIRECTORY && chmod 777 $BB_WORKING_DIRECTORY $ACVM_WORKING_DIRECTORY
WORKDIR "/usr/src/yarn-project"
ENTRYPOINT ["/bin/bash", "-c", "node --no-warnings /usr/src/yarn-project/aztec/dest/bin/index.js"]
5 changes: 2 additions & 3 deletions release-image/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,5 @@ We then manually install our required version of node, and a handful of require

# Entrypoint

The entrypoint is just the default bash shell.
This means when running the container, you should pass as arguments the desired entrypoint and arguments.
This could be nargo, aztec-wallet, aztec cli, anvil, etc.
The entrypoint will the aztec cli, you should pass as arguments the desired entrypoint and arguments.
When wanting to run nargo, aztec-wallet, aztec cli, anvil, etc, update the entrypoint to just be bash before executing.