Update DockerFile to include ccip-server (#3370)

### Description
Fixes Workflow issue due to missing ccip-server package

### Drive-by changes

<!--
Are there any minor or drive-by changes also included?
-->

### Related issues

<!--
- Fixes #[issue number here]
-->

### Backward compatibility

Yes

### Testing

<!--
What kind of testing have these changes undergone?

None/Manual/Unit Tests
-->
pull/3374/head
Lee 9 months ago committed by GitHub
parent 0bdabb8abd
commit 043f756707
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      Dockerfile
  2. 2
      typescript/infra/src/agents/agent.ts

@ -15,6 +15,7 @@ COPY typescript/sdk/package.json ./typescript/sdk/
COPY typescript/helloworld/package.json ./typescript/helloworld/ COPY typescript/helloworld/package.json ./typescript/helloworld/
COPY typescript/cli/package.json ./typescript/cli/ COPY typescript/cli/package.json ./typescript/cli/
COPY typescript/infra/package.json ./typescript/infra/ COPY typescript/infra/package.json ./typescript/infra/
COPY typescript/ccip-server/package.json ./typescript/ccip-server/
COPY solidity/package.json ./solidity/ COPY solidity/package.json ./solidity/
RUN yarn install && yarn cache clean RUN yarn install && yarn cache clean

@ -48,7 +48,7 @@ export function userIdentifier(
return identifier(false, environment, context, role, chainName, index); 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. // this is left to the caller.
export function parseKeyIdentifier(identifier: string): { export function parseKeyIdentifier(identifier: string): {
environment: string; environment: string;

Loading…
Cancel
Save