Skip to content

Commit b98468d

Browse files
authored
fix: monorepo docker builds (hyperlane-xyz#6245)
### Description fix: monorepo docker builds ### Drive-by changes <!-- Are there any minor or drive-by changes also included? --> ### Related issues <!-- - Fixes #[issue number here] --> ### Backward compatibility <!-- Are these changes backward compatible? Are there any infrastructure implications, e.g. changes that would prohibit deploying older commits using this infra tooling? Yes/No --> ### Testing <!-- What kind of testing have these changes undergone? None/Manual/Unit Tests -->
1 parent 0de63e0 commit b98468d

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM node:20-alpine
22

33
WORKDIR /hyperlane-monorepo
44

5-
RUN apk add --update --no-cache git g++ make py3-pip jq
5+
RUN apk add --update --no-cache git g++ make py3-pip jq bash curl
66

77
RUN yarn set version 4.5.1
88

@@ -22,14 +22,15 @@ COPY typescript/github-proxy/package.json ./typescript/github-proxy/
2222
COPY typescript/cosmos-types/package.json ./typescript/cosmos-types/
2323
COPY typescript/cosmos-sdk/package.json ./typescript/cosmos-sdk/
2424
COPY solidity/package.json ./solidity/
25-
COPY starknet/package.json ./starknet/
25+
COPY starknet/package.json ./starknet/
2626

2727
RUN yarn install && yarn cache clean
2828

2929
# Copy everything else
3030
COPY tsconfig.json ./
3131
COPY typescript ./typescript
3232
COPY solidity ./solidity
33+
COPY starknet ./starknet
3334

3435
RUN yarn build
3536

0 commit comments

Comments
 (0)