| 12345678910111213141516 |
- # Defined in tilt_devnet/docker_images/Dockerfile.lerna
- FROM lerna
- WORKDIR /home/node/
- USER 1000
- COPY --chown=1000:1000 target_chains/ethereum/sdk/solidity target_chains/ethereum/sdk/solidity
- COPY --chown=1000:1000 price_service/sdk/js price_service/sdk/js
- COPY --chown=1000:1000 third_party/pyth/p2w-relay third_party/pyth/p2w-relay
- COPY --chown=1000:1000 wormhole_attester/sdk/js wormhole_attester/sdk/js
- RUN npx lerna run build --scope="pyth_relay" --include-dependencies
- WORKDIR /home/node/third_party/pyth/p2w-relay
- CMD [ "npm", "run", "start" ]
|