From 7cfc4d2a10a7425fdecd9fdd011998b38e7cc1ce Mon Sep 17 00:00:00 2001 From: benesjan Date: Thu, 7 Sep 2023 09:37:45 +0000 Subject: [PATCH] fix --- yarn-project/cli/Dockerfile | 4 ++-- yarn-project/noir-compiler/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn-project/cli/Dockerfile b/yarn-project/cli/Dockerfile index 69905541e8cc..c6e257251d4a 100644 --- a/yarn-project/cli/Dockerfile +++ b/yarn-project/cli/Dockerfile @@ -2,7 +2,7 @@ FROM 278380418400.dkr.ecr.eu-west-2.amazonaws.com/yarn-project-base AS builder COPY . . -WORKDIR /usr/src/yarn-project/aztec-cli +WORKDIR /usr/src/yarn-project/cli RUN yarn build && yarn formatting && yarn test # Prune dev dependencies. See comment in base image. @@ -11,5 +11,5 @@ RUN yarn workspaces focus --production > /dev/null FROM node:18-alpine COPY --from=builder /usr/src/ /usr/src/ -WORKDIR /usr/src/yarn-project/aztec-cli +WORKDIR /usr/src/yarn-project/cli ENTRYPOINT ["yarn", "start"] \ No newline at end of file diff --git a/yarn-project/noir-compiler/README.md b/yarn-project/noir-compiler/README.md index 9e6fa3796a19..92558025bbb6 100644 --- a/yarn-project/noir-compiler/README.md +++ b/yarn-project/noir-compiler/README.md @@ -18,7 +18,7 @@ To run the compiler as a CLI tool, first install the package and then run: yarn aztec-compile compile --help ``` -You can also run the compiler from the [main Aztec CLI](../aztec-cli/README.md), which includes several other features for interacting with the Aztec Network: +You can also run the compiler from the [main Aztec CLI](../cli/README.md), which includes several other features for interacting with the Aztec Network: ```bash yarn add @aztec/cli