Dockerfile.pyth_relay 556 B

12345678910111213141516
  1. # Defined in tilt_devnet/docker_images/Dockerfile.lerna
  2. FROM lerna
  3. WORKDIR /home/node/
  4. USER 1000
  5. COPY --chown=1000:1000 target_chains/ethereum/sdk/solidity target_chains/ethereum/sdk/solidity
  6. COPY --chown=1000:1000 price_service/sdk/js price_service/sdk/js
  7. COPY --chown=1000:1000 third_party/pyth/p2w-relay third_party/pyth/p2w-relay
  8. COPY --chown=1000:1000 wormhole_attester/sdk/js wormhole_attester/sdk/js
  9. RUN npx lerna run build --scope="pyth_relay" --include-dependencies
  10. WORKDIR /home/node/third_party/pyth/p2w-relay
  11. CMD [ "npm", "run", "start" ]