From 043f756707792b51367c46ab4d8468f8aae79eb9 Mon Sep 17 00:00:00 2001 From: Lee <6251863+ltyu@users.noreply.github.com> Date: Thu, 7 Mar 2024 03:22:00 -0500 Subject: [PATCH] Update DockerFile to include ccip-server (#3370) ### Description Fixes Workflow issue due to missing ccip-server package ### Drive-by changes ### Related issues ### Backward compatibility Yes ### Testing --- Dockerfile | 1 + typescript/infra/src/agents/agent.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 446340248..f40cc6e49 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,6 +15,7 @@ COPY typescript/sdk/package.json ./typescript/sdk/ COPY typescript/helloworld/package.json ./typescript/helloworld/ COPY typescript/cli/package.json ./typescript/cli/ COPY typescript/infra/package.json ./typescript/infra/ +COPY typescript/ccip-server/package.json ./typescript/ccip-server/ COPY solidity/package.json ./solidity/ RUN yarn install && yarn cache clean diff --git a/typescript/infra/src/agents/agent.ts b/typescript/infra/src/agents/agent.ts index 206ede345..e6afe9f02 100644 --- a/typescript/infra/src/agents/agent.ts +++ b/typescript/infra/src/agents/agent.ts @@ -48,7 +48,7 @@ export function userIdentifier( return identifier(false, environment, context, role, chainName, index); } -// Doesn't perform any checks on whether the parsed values are valid, +// Does not perform any checks on whether the parsed values are valid, // this is left to the caller. export function parseKeyIdentifier(identifier: string): { environment: string;