From 1ddaf03acf0a7399739eab419df6ee243bacd013 Mon Sep 17 00:00:00 2001 From: spypsy Date: Thu, 7 Dec 2023 13:39:21 +0000 Subject: [PATCH 1/2] fix(ci): rebuild versioned cli / sandbox images --- yarn-project/aztec-sandbox/Dockerfile | 4 ++++ yarn-project/cli/Dockerfile | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/yarn-project/aztec-sandbox/Dockerfile b/yarn-project/aztec-sandbox/Dockerfile index c61714b06a37..373184785cd4 100644 --- a/yarn-project/aztec-sandbox/Dockerfile +++ b/yarn-project/aztec-sandbox/Dockerfile @@ -1,4 +1,8 @@ FROM 278380418400.dkr.ecr.eu-west-2.amazonaws.com/yarn-project-prod AS yarn-project-prod +# The version have been updated in yarn-project-prod. +# Adding COMMIT_TAG here to rebuild versioned image. +ARG COMMIT_TAG="" + ENTRYPOINT ["node", "--no-warnings", "/usr/src/yarn-project/aztec-sandbox/dest/bin/index.js"] EXPOSE 8079 8080 diff --git a/yarn-project/cli/Dockerfile b/yarn-project/cli/Dockerfile index 5663b1b079bc..4934597207fe 100644 --- a/yarn-project/cli/Dockerfile +++ b/yarn-project/cli/Dockerfile @@ -2,6 +2,10 @@ FROM 278380418400.dkr.ecr.eu-west-2.amazonaws.com/yarn-project-prod AS yarn-proj ENTRYPOINT ["node", "--no-warnings", "/usr/src/yarn-project/cli/dest/bin/index.js"] +# The version have been updated in yarn-project-prod. +# Adding COMMIT_TAG here to rebuild versioned image. +ARG COMMIT_TAG="" + # Setup cache volume. ENV XDG_CACHE_HOME /cache RUN mkdir /cache && chmod 777 /cache From 077007d2a9f35c92ba5f6799d856a30946d59350 Mon Sep 17 00:00:00 2001 From: spypsy Date: Thu, 7 Dec 2023 13:41:06 +0000 Subject: [PATCH 2/2] grammar --- yarn-project/aztec-sandbox/Dockerfile | 2 +- yarn-project/cli/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/yarn-project/aztec-sandbox/Dockerfile b/yarn-project/aztec-sandbox/Dockerfile index 373184785cd4..2f9644563e02 100644 --- a/yarn-project/aztec-sandbox/Dockerfile +++ b/yarn-project/aztec-sandbox/Dockerfile @@ -1,6 +1,6 @@ FROM 278380418400.dkr.ecr.eu-west-2.amazonaws.com/yarn-project-prod AS yarn-project-prod -# The version have been updated in yarn-project-prod. +# The version has been updated in yarn-project-prod. # Adding COMMIT_TAG here to rebuild versioned image. ARG COMMIT_TAG="" diff --git a/yarn-project/cli/Dockerfile b/yarn-project/cli/Dockerfile index 4934597207fe..dfffe9b18436 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-prod AS yarn-proj ENTRYPOINT ["node", "--no-warnings", "/usr/src/yarn-project/cli/dest/bin/index.js"] -# The version have been updated in yarn-project-prod. +# The version has been updated in yarn-project-prod. # Adding COMMIT_TAG here to rebuild versioned image. ARG COMMIT_TAG=""