16 lines
461 B
Docker
16 lines
461 B
Docker
# Defined in tilt_devnet/docker_images/Dockerfile.lerna
|
|
FROM lerna
|
|
|
|
WORKDIR /home/node/
|
|
USER 1000
|
|
|
|
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" ]
|