Skip to content

Commit

Permalink
Update DockerFile to include ccip-server (#3370)
Browse files Browse the repository at this point in the history
### 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
-->
  • Loading branch information
ltyu authored Mar 7, 2024
1 parent 0bdabb8 commit 043f756
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion typescript/infra/src/agents/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 043f756

Please sign in to comment.